aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorReinUsesLisp <[email protected]>2020-06-30 04:53:48 -0300
committerReinUsesLisp <[email protected]>2020-07-13 01:01:09 -0300
commit1d20aac795857f8d28e7fc196473a90da4ced33d (patch)
tree3ffb19ef38a1420967a55c8181554f7abe766293 /src/video_core/gpu.h
parent9338599d7246a954a1ce25a7e97d80bc1062e1d9 (diff)
downloadyuzu-mainline-1d20aac795857f8d28e7fc196473a90da4ced33d.tar.gz
yuzu-mainline-1d20aac795857f8d28e7fc196473a90da4ced33d.zip
video_core: Implement RGBA32_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 102f528c5..464f5c7d6 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -54,6 +54,7 @@ enum class RenderTargetFormat : u32 {
BGRA8_UNORM = 0xCF,
BGRA8_SRGB = 0xD0,
RGB10_A2_UNORM = 0xD1,
+ RGB10_A2_UINT = 0xD2,
RGBA8_UNORM = 0xD5,
RGBA8_SRGB = 0xD6,
RGBA8_SNORM = 0xD7,