summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-06-30 04:23:03 -0300
committerGravatar ReinUsesLisp2020-07-13 01:01:09 -0300
commit50c6030a8dc19454f558ba38562aed44b8c294f2 (patch)
tree9b36c6358ff0fe662f0f5b08125a2c2b28ebcbd4 /src/video_core/gpu.h
parentvideo_core: Implement RG8_SINT render target and fix RG8_UINT (diff)
downloadyuzu-50c6030a8dc19454f558ba38562aed44b8c294f2.tar.gz
yuzu-50c6030a8dc19454f558ba38562aed44b8c294f2.tar.xz
yuzu-50c6030a8dc19454f558ba38562aed44b8c294f2.zip
video_core: Implement RG32_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 a6f846f3c..b0a2ad21b 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -46,6 +46,7 @@ enum class RenderTargetFormat : u32 {
46 RGBA16_UINT = 0xC9, 46 RGBA16_UINT = 0xC9,
47 RGBA16_FLOAT = 0xCA, 47 RGBA16_FLOAT = 0xCA,
48 RG32_FLOAT = 0xCB, 48 RG32_FLOAT = 0xCB,
49 RG32_SINT = 0xCC,
49 RG32_UINT = 0xCD, 50 RG32_UINT = 0xCD,
50 RGBX16_FLOAT = 0xCE, 51 RGBX16_FLOAT = 0xCE,
51 BGRA8_UNORM = 0xCF, 52 BGRA8_UNORM = 0xCF,