summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
authorGravatar Rodrigo Locatti2020-05-09 05:28:55 -0300
committerGravatar GitHub2020-05-09 05:28:55 -0300
commit7e376af8fcd60baaa127b459e83bf716067be233 (patch)
tree074ebb06bf109a9277cc7e6f4b1a0a491adc8fd7 /src/video_core/gpu.h
parentMerge pull request #3842 from makigumo/maxwell_to_vk_vertexattribute_signed_int (diff)
parenttexture: Implement R8G8UI (diff)
downloadyuzu-7e376af8fcd60baaa127b459e83bf716067be233.tar.gz
yuzu-7e376af8fcd60baaa127b459e83bf716067be233.tar.xz
yuzu-7e376af8fcd60baaa127b459e83bf716067be233.zip
Merge pull request #3839 from Morph1984/r8g8ui
texture: Implement R8G8UI
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 dd51c95b7..a1b4c305c 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -68,6 +68,7 @@ enum class RenderTargetFormat : u32 {
68 BGR5A1_UNORM = 0xE9, 68 BGR5A1_UNORM = 0xE9,
69 RG8_UNORM = 0xEA, 69 RG8_UNORM = 0xEA,
70 RG8_SNORM = 0xEB, 70 RG8_SNORM = 0xEB,
71 RG8_UINT = 0xED,
71 R16_UNORM = 0xEE, 72 R16_UNORM = 0xEE,
72 R16_SNORM = 0xEF, 73 R16_SNORM = 0xEF,
73 R16_SINT = 0xF0, 74 R16_SINT = 0xF0,