summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/texture_cache.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-06-18 01:19:47 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-06-21 02:38:34 +0200
commit6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4 (patch)
treeba581e42aa67d799b8f7dfbe890c8957a4d652ce /src/video_core/texture_cache/texture_cache.h
parenttexture_cache: Implement texception detection and texture barriers. (diff)
downloadyuzu-6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4.tar
yuzu-6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4.tar.gz
yuzu-6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4.tar.bz2
yuzu-6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4.tar.lz
yuzu-6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4.tar.xz
yuzu-6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4.tar.zst
yuzu-6acdae0e4c9d0c20f668cd86250b5d5b0dbd70c4.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/texture_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h
index 353fa4e31..78821503e 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -258,7 +258,7 @@ protected:
for (u32 i = 0; i < max_formats; i++) {
siblings_table[static_cast<PixelFormat>(i)] = PixelFormat::Invalid;
}
- make_siblings(PixelFormat::Z16, PixelFormat::R16F);
+ make_siblings(PixelFormat::Z16, PixelFormat::R16U);
make_siblings(PixelFormat::Z32F, PixelFormat::R32F);
make_siblings(PixelFormat::Z32FS8, PixelFormat::RG32F);
sampled_textures_stack.resize(64);