diff options
| author | 2021-11-19 01:16:49 -0800 | |
|---|---|---|
| committer | 2021-11-19 01:16:49 -0800 | |
| commit | c45af76ea0f19a76a7fa99e37d296aa2fabf0395 (patch) | |
| tree | ffb440bd7ee2f624164cc7f1f912db7a81ca06c5 /src/video_core/gpu.h | |
| parent | Merge pull request #7349 from ameerj/ogl-convert-image (diff) | |
| parent | renderer_vulkan: Implement S8_UINT stencil format (diff) | |
| download | yuzu-c45af76ea0f19a76a7fa99e37d296aa2fabf0395.tar.gz yuzu-c45af76ea0f19a76a7fa99e37d296aa2fabf0395.tar.xz yuzu-c45af76ea0f19a76a7fa99e37d296aa2fabf0395.zip | |
Merge pull request #7357 from Morph1984/s8_uint
video_core: Implement S8_UINT 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 { | |||
| 83 | S8_UINT_Z24_UNORM = 0x14, | 83 | S8_UINT_Z24_UNORM = 0x14, |
| 84 | D24X8_UNORM = 0x15, | 84 | D24X8_UNORM = 0x15, |
| 85 | D24S8_UNORM = 0x16, | 85 | D24S8_UNORM = 0x16, |
| 86 | S8_UINT = 0x17, | ||
| 86 | D24C8_UNORM = 0x18, | 87 | D24C8_UNORM = 0x18, |
| 87 | D32_FLOAT_S8X24_UINT = 0x19, | 88 | D32_FLOAT_S8X24_UINT = 0x19, |
| 88 | }; | 89 | }; |