Просмотр исходного кода

Merge pull request #815 from Subv/z32f_tex

GPU: Allow using Z32 as a texture format.
bunnei 8 лет назад
Родитель
Сommit
af787744ab
1 измененных файлов с 4 добавлено и 0 удалено
  1. 4 0
      src/video_core/renderer_opengl/gl_rasterizer_cache.h

+ 4 - 0
src/video_core/renderer_opengl/gl_rasterizer_cache.h

@@ -246,6 +246,8 @@ struct SurfaceParams {
             UNREACHABLE();
         case Tegra::Texture::TextureFormat::R32:
             return PixelFormat::R32F;
+        case Tegra::Texture::TextureFormat::ZF32:
+            return PixelFormat::Z32F;
         case Tegra::Texture::TextureFormat::DXT1:
             return PixelFormat::DXT1;
         case Tegra::Texture::TextureFormat::DXT23:
@@ -311,6 +313,8 @@ struct SurfaceParams {
         case PixelFormat::R16F:
         case PixelFormat::R16UNORM:
             return Tegra::Texture::TextureFormat::R16;
+        case PixelFormat::Z32F:
+            return Tegra::Texture::TextureFormat::ZF32;
         default:
             LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format));
             UNREACHABLE();