diff options
| author | 2018-07-03 18:26:31 -0400 | |
|---|---|---|
| committer | 2018-07-03 18:26:31 -0400 | |
| commit | 4030f600dc1a282c2ed5a54aac6695b816eee466 (patch) | |
| tree | e10671ea7c221f33c2879ca9a5abc8d70a80083b /src/video_core/textures/decoders.cpp | |
| parent | Merge pull request #613 from jroweboy/qt-style (diff) | |
| parent | gl_rasterizer_cache: Implement PixelFormat S8Z24. (diff) | |
| download | yuzu-4030f600dc1a282c2ed5a54aac6695b816eee466.tar.gz yuzu-4030f600dc1a282c2ed5a54aac6695b816eee466.tar.xz yuzu-4030f600dc1a282c2ed5a54aac6695b816eee466.zip | |
Merge pull request #616 from bunnei/s8z24
gl_rasterizer_cache: Implement PixelFormat S8Z24.
Diffstat (limited to 'src/video_core/textures/decoders.cpp')
| -rw-r--r-- | src/video_core/textures/decoders.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index 680f22ddb..7b06fea3e 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp | |||
| @@ -76,6 +76,7 @@ u32 BytesPerPixel(TextureFormat format) { | |||
| 76 | 76 | ||
| 77 | static u32 DepthBytesPerPixel(DepthFormat format) { | 77 | static u32 DepthBytesPerPixel(DepthFormat format) { |
| 78 | switch (format) { | 78 | switch (format) { |
| 79 | case DepthFormat::S8_Z24_UNORM: | ||
| 79 | case DepthFormat::Z24_S8_UNORM: | 80 | case DepthFormat::Z24_S8_UNORM: |
| 80 | return 4; | 81 | return 4; |
| 81 | default: | 82 | default: |
| @@ -129,6 +130,7 @@ std::vector<u8> UnswizzleDepthTexture(VAddr address, DepthFormat format, u32 wid | |||
| 129 | std::vector<u8> unswizzled_data(width * height * bytes_per_pixel); | 130 | std::vector<u8> unswizzled_data(width * height * bytes_per_pixel); |
| 130 | 131 | ||
| 131 | switch (format) { | 132 | switch (format) { |
| 133 | case DepthFormat::S8_Z24_UNORM: | ||
| 132 | case DepthFormat::Z24_S8_UNORM: | 134 | case DepthFormat::Z24_S8_UNORM: |
| 133 | CopySwizzledData(width, height, bytes_per_pixel, bytes_per_pixel, data, | 135 | CopySwizzledData(width, height, bytes_per_pixel, bytes_per_pixel, data, |
| 134 | unswizzled_data.data(), true, block_height); | 136 | unswizzled_data.data(), true, block_height); |