summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-07-28 07:53:24 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-11-16 22:11:28 +0100
commit2182d2575010a5a85c99c09c6a1c57962242444d (patch)
tree241bdf224a79646b29e143f6946b86cb2a4f9aba
parenttexture_cache: Simplify image view queries and blacklisting (diff)
downloadyuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar
yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar.gz
yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar.bz2
yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar.lz
yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar.xz
yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar.zst
yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.zip
-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 4e97a9e6a..4dbded635 100644
--- a/src/video_core/texture_cache/texture_cache.h
+++ b/src/video_core/texture_cache/texture_cache.h
@@ -142,7 +142,7 @@ void TextureCache<P>::FillGraphicsImageViews(std::span<ImageViewInOut> views) {
template <class P>
void TextureCache<P>::FillComputeImageViews(std::span<ImageViewInOut> views) {
- FillImageViews<false>(compute_image_table, compute_image_view_ids, views);
+ FillImageViews<true>(compute_image_table, compute_image_view_ids, views);
}
template <class P>