diff options
| author | 2021-07-28 02:53:24 -0300 | |
|---|---|---|
| committer | 2021-11-16 22:11:28 +0100 | |
| commit | 2182d2575010a5a85c99c09c6a1c57962242444d (patch) | |
| tree | 241bdf224a79646b29e143f6946b86cb2a4f9aba /src | |
| parent | texture_cache: Simplify image view queries and blacklisting (diff) | |
| download | yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar.gz yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.tar.xz yuzu-2182d2575010a5a85c99c09c6a1c57962242444d.zip | |
texture_cache: Fix blacklists on compute
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 2 |
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) { | |||
| 142 | 142 | ||
| 143 | template <class P> | 143 | template <class P> |
| 144 | void TextureCache<P>::FillComputeImageViews(std::span<ImageViewInOut> views) { | 144 | void TextureCache<P>::FillComputeImageViews(std::span<ImageViewInOut> views) { |
| 145 | FillImageViews<false>(compute_image_table, compute_image_view_ids, views); | 145 | FillImageViews<true>(compute_image_table, compute_image_view_ids, views); |
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | template <class P> | 148 | template <class P> |