Explorar o código

texture_cache: Fix blacklists on compute

ReinUsesLisp %!s(int64=5) %!d(string=hai) anos
pai
achega
2182d25750
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/video_core/texture_cache/texture_cache.h

+ 1 - 1
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>