summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2020-06-30 04:00:23 -0300
committerGravatar ReinUsesLisp2020-07-13 01:01:08 -0300
commitf29fede49c647ce336de2fb4f48aba25f968a882 (patch)
tree221f82144265a6587440ee801b5d4662f1d49a27 /src/video_core/gpu.h
parentvideo_core: Implement R8_SNORM render target (diff)
downloadyuzu-f29fede49c647ce336de2fb4f48aba25f968a882.tar.gz
yuzu-f29fede49c647ce336de2fb4f48aba25f968a882.tar.xz
yuzu-f29fede49c647ce336de2fb4f48aba25f968a882.zip
video_core: Implement R8_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 2b92ab0ea..1e5d2ffcc 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -76,6 +76,7 @@ enum class RenderTargetFormat : u32 {
76 R16_FLOAT = 0xF2, 76 R16_FLOAT = 0xF2,
77 R8_UNORM = 0xF3, 77 R8_UNORM = 0xF3,
78 R8_SNORM = 0xF4, 78 R8_SNORM = 0xF4,
79 R8_SINT = 0xF5,
79 R8_UINT = 0xF6, 80 R8_UINT = 0xF6,
80}; 81};
81 82