summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar David Marcec2018-08-20 22:26:54 +1000
committerGravatar David Marcec2018-08-20 22:26:54 +1000
commit23d45715dc6d51299984cd03300891846614e314 (patch)
tree5dc27e564b9c5cf6d7d86d3b6147a0e772de3d54 /src/video_core/gpu.h
parentMerge pull request #1089 from Subv/neg_bits (diff)
downloadyuzu-23d45715dc6d51299984cd03300891846614e314.tar.gz
yuzu-23d45715dc6d51299984cd03300891846614e314.tar.xz
yuzu-23d45715dc6d51299984cd03300891846614e314.zip
Implemented RGBA8_UINT
Needed by kirby
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 97dcccb92..2697e1c27 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -30,6 +30,7 @@ enum class RenderTargetFormat : u32 {
30 RGBA8_UNORM = 0xD5, 30 RGBA8_UNORM = 0xD5,
31 RGBA8_SRGB = 0xD6, 31 RGBA8_SRGB = 0xD6,
32 RGBA8_SNORM = 0xD7, 32 RGBA8_SNORM = 0xD7,
33 RGBA8_UINT = 0xD9,
33 RG16_UNORM = 0xDA, 34 RG16_UNORM = 0xDA,
34 RG16_SNORM = 0xDB, 35 RG16_SNORM = 0xDB,
35 RG16_SINT = 0xDC, 36 RG16_SINT = 0xDC,