summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-06-30 04:31:48 -0300
committerGravatar ReinUsesLisp2020-07-13 01:01:09 -0300
commit977d6c46f334493852c5c31ff824a871e94188a1 (patch)
treed7a9105d1bd9d93b8f0b2dc6a66c188b9e14d89a /src/video_core/gpu.h
parentvideo_core: Implement RG32_SINT render target (diff)
downloadyuzu-977d6c46f334493852c5c31ff824a871e94188a1.tar.gz
yuzu-977d6c46f334493852c5c31ff824a871e94188a1.tar.xz
yuzu-977d6c46f334493852c5c31ff824a871e94188a1.zip
video_core: Implement RGBA8_SINT render target
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 b0a2ad21b..e3ab786e5 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -55,6 +55,7 @@ enum class RenderTargetFormat : u32 {
55 RGBA8_UNORM = 0xD5, 55 RGBA8_UNORM = 0xD5,
56 RGBA8_SRGB = 0xD6, 56 RGBA8_SRGB = 0xD6,
57 RGBA8_SNORM = 0xD7, 57 RGBA8_SNORM = 0xD7,
58 RGBA8_SINT = 0xD8,
58 RGBA8_UINT = 0xD9, 59 RGBA8_UINT = 0xD9,
59 RG16_UNORM = 0xDA, 60 RG16_UNORM = 0xDA,
60 RG16_SNORM = 0xDB, 61 RG16_SNORM = 0xDB,