summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar Mat M2020-02-25 17:47:14 -0500
committerGravatar GitHub2020-02-25 17:47:14 -0500
commit45ac1c62c63ed97dc9d4eacbc42f29e41c061deb (patch)
treea5b6389d647c281bd8cd5bc92b4da4315f3970dc /src/video_core/gpu.h
parentMerge pull request #3460 from ReinUsesLisp/unused-format-getter (diff)
parentvideo_core/surface: Add R32_SINT render target format (diff)
downloadyuzu-45ac1c62c63ed97dc9d4eacbc42f29e41c061deb.tar.gz
yuzu-45ac1c62c63ed97dc9d4eacbc42f29e41c061deb.tar.xz
yuzu-45ac1c62c63ed97dc9d4eacbc42f29e41c061deb.zip
Merge pull request #3461 from ReinUsesLisp/r32i-rt
video_core/surface: Add R32_SINT render target 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 8bb6fc60e..ba8c9d665 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -57,6 +57,7 @@ enum class RenderTargetFormat : u32 {
57 RG16_UINT = 0xDD, 57 RG16_UINT = 0xDD,
58 RG16_FLOAT = 0xDE, 58 RG16_FLOAT = 0xDE,
59 R11G11B10_FLOAT = 0xE0, 59 R11G11B10_FLOAT = 0xE0,
60 R32_SINT = 0xE3,
60 R32_UINT = 0xE4, 61 R32_UINT = 0xE4,
61 R32_FLOAT = 0xE5, 62 R32_FLOAT = 0xE5,
62 B5G6R5_UNORM = 0xE8, 63 B5G6R5_UNORM = 0xE8,