diff options
author | Morph <[email protected]> | 2021-11-17 15:04:38 -0500 |
---|---|---|
committer | Morph <[email protected]> | 2021-11-17 15:04:38 -0500 |
commit | 2348eb41f38a6e52e52d121adfc4c605763209a7 (patch) | |
tree | b4bdeb539cc1030fb43f17edbdfee459ca2b843a /src/video_core/gpu.h | |
parent | 71313509f75aeafe425e531824d1faa9e7c0a40b (diff) | |
download | yuzu-mainline-2348eb41f38a6e52e52d121adfc4c605763209a7.tar.gz yuzu-mainline-2348eb41f38a6e52e52d121adfc4c605763209a7.zip |
video_core: Add S8_UINT stencil format
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 05e5c94f3..c89a5d693 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -83,6 +83,7 @@ enum class DepthFormat : u32 { S8_UINT_Z24_UNORM = 0x14, D24X8_UNORM = 0x15, D24S8_UNORM = 0x16, + S8_UINT = 0x17, D24C8_UNORM = 0x18, D32_FLOAT_S8X24_UINT = 0x19, }; |