Explorar el Código

Add missing pixel format mapping

Feng Chen hace 4 años
padre
commit
524a9baa7e
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/video_core/texture_cache/format_lookup_table.cpp

+ 2 - 0
src/video_core/texture_cache/format_lookup_table.cpp

@@ -139,6 +139,8 @@ PixelFormat PixelFormatFromTextureInfo(TextureFormat format, ComponentType red,
         return PixelFormat::D16_UNORM;
     case Hash(TextureFormat::S8D24, UINT, UNORM, UNORM, UNORM, LINEAR):
         return PixelFormat::S8_UINT_D24_UNORM;
+    case Hash(TextureFormat::S8D24, UINT, UNORM, UINT, UINT, LINEAR):
+        return PixelFormat::S8_UINT_D24_UNORM;
     case Hash(TextureFormat::R8G24, UINT, UNORM, UNORM, UNORM, LINEAR):
         return PixelFormat::S8_UINT_D24_UNORM;
     case Hash(TextureFormat::D32S8, FLOAT, UINT, UNORM, UNORM, LINEAR):