diff options
| author | 2018-07-25 07:37:00 -0700 | |
|---|---|---|
| committer | 2018-07-25 07:37:00 -0700 | |
| commit | 0686183c3e60c972523342dfa19f495f0f3de5f6 (patch) | |
| tree | 826eca266297e3a54313f4fe60334e7a196a4694 /src/video_core/gpu.h | |
| parent | Merge pull request #815 from Subv/z32f_tex (diff) | |
| parent | GPU: Implemented the Z32_S8_X24 depth buffer format. (diff) | |
| download | yuzu-0686183c3e60c972523342dfa19f495f0f3de5f6.tar.gz yuzu-0686183c3e60c972523342dfa19f495f0f3de5f6.tar.xz yuzu-0686183c3e60c972523342dfa19f495f0f3de5f6.zip | |
Merge pull request #816 from Subv/z32_s8
GPU: Implemented the Z32_S8_X24 depth buffer 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 ba7b81571..e9d87efb4 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h | |||
| @@ -34,6 +34,7 @@ enum class DepthFormat : u32 { | |||
| 34 | Z24_X8_UNORM = 0x15, | 34 | Z24_X8_UNORM = 0x15, |
| 35 | Z24_S8_UNORM = 0x16, | 35 | Z24_S8_UNORM = 0x16, |
| 36 | Z24_C8_UNORM = 0x18, | 36 | Z24_C8_UNORM = 0x18, |
| 37 | Z32_S8_X24_FLOAT = 0x19, | ||
| 37 | }; | 38 | }; |
| 38 | 39 | ||
| 39 | /// Returns the number of bytes per pixel of each rendertarget format. | 40 | /// Returns the number of bytes per pixel of each rendertarget format. |