summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-01 03:22:38 -0400
committerGitHub <noreply@github.com>2018-07-01 03:22:38 -0400
commitb611d852db85eb8b2d5b4b69696bc2411b7bf0fb (patch)
treec8954545615b2c45c66be12b58fd29bd95e9272f /src/video_core/gpu.h
parent85a60e204413c6855b68e94197be3bbc0c4a855d (diff)
parentc0e2d5275814e6d3fe15d1b8abb0f057c0e5d155 (diff)
Merge pull request #601 from Subv/rgba32_ui
GPU: Implement the RGBA32_UINT rendertarget format.
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 7b4e9b842..d0a4ac267 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -16,6 +16,7 @@ namespace Tegra {
enum class RenderTargetFormat : u32 {
NONE = 0x0,
RGBA32_FLOAT = 0xC0,
+ RGBA32_UINT = 0xC2,
RGBA16_FLOAT = 0xCA,
RGB10_A2_UNORM = 0xD1,
RGBA8_UNORM = 0xD5,