diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-23 22:23:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 22:23:56 +0200 |
commit | c6f5c7d291b6bdfcc0e472298b93d046bfb534a6 (patch) | |
tree | 1e3f17975d748bafdac4afb8f07be630b0f09530 | |
parent | Merge pull request #1378 from lioncash/thread (diff) | |
parent | correct BC6H (diff) | |
download | yuzu-c6f5c7d291b6bdfcc0e472298b93d046bfb534a6.tar yuzu-c6f5c7d291b6bdfcc0e472298b93d046bfb534a6.tar.gz yuzu-c6f5c7d291b6bdfcc0e472298b93d046bfb534a6.tar.bz2 yuzu-c6f5c7d291b6bdfcc0e472298b93d046bfb534a6.tar.lz yuzu-c6f5c7d291b6bdfcc0e472298b93d046bfb534a6.tar.xz yuzu-c6f5c7d291b6bdfcc0e472298b93d046bfb534a6.tar.zst yuzu-c6f5c7d291b6bdfcc0e472298b93d046bfb534a6.zip |
-rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp index 86682d7cb..f9d97d928 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.cpp @@ -141,8 +141,8 @@ static constexpr std::array<FormatTuple, SurfaceParams::MaxPixelFormat> tex_form {GL_COMPRESSED_RGBA_BPTC_UNORM_ARB, GL_RGBA, GL_UNSIGNED_INT_8_8_8_8, ComponentType::UNorm, true}, // BC7U {GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB, GL_RGB, GL_UNSIGNED_INT_8_8_8_8, - ComponentType::UNorm, true}, // BC6H_UF16 - {GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB, GL_RGB, GL_UNSIGNED_INT_8_8_8_8, ComponentType::UNorm, + ComponentType::Float, true}, // BC6H_UF16 + {GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB, GL_RGB, GL_UNSIGNED_INT_8_8_8_8, ComponentType::Float, true}, // BC6H_SF16 {GL_RGBA8, GL_RGBA, GL_UNSIGNED_BYTE, ComponentType::UNorm, false}, // ASTC_2D_4X4 {GL_RG8, GL_RG, GL_UNSIGNED_BYTE, ComponentType::UNorm, false}, // G8R8U |