summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/texture_cache_base.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-03 20:02:20 +0100
committerLiam <byteslice@airmail.cc>2023-12-03 22:43:54 +0100
commit382cf087a09e1095f07c14aabc8e432ec0a1a2c1 (patch)
treed028d018e39466e041992d2aad804914355758ae /src/video_core/texture_cache/texture_cache_base.h
parentMerge pull request #12094 from ameerj/gl-buffer-cache-batch-vtx (diff)
downloadyuzu-382cf087a09e1095f07c14aabc8e432ec0a1a2c1.tar
yuzu-382cf087a09e1095f07c14aabc8e432ec0a1a2c1.tar.gz
yuzu-382cf087a09e1095f07c14aabc8e432ec0a1a2c1.tar.bz2
yuzu-382cf087a09e1095f07c14aabc8e432ec0a1a2c1.tar.lz
yuzu-382cf087a09e1095f07c14aabc8e432ec0a1a2c1.tar.xz
yuzu-382cf087a09e1095f07c14aabc8e432ec0a1a2c1.tar.zst
yuzu-382cf087a09e1095f07c14aabc8e432ec0a1a2c1.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/texture_cache/texture_cache_base.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/texture_cache_base.h b/src/video_core/texture_cache/texture_cache_base.h
index a40825c9f..cbe56e166 100644
--- a/src/video_core/texture_cache/texture_cache_base.h
+++ b/src/video_core/texture_cache/texture_cache_base.h
@@ -209,7 +209,8 @@ public:
const Tegra::Engines::Fermi2D::Config& copy);
/// Try to find a cached image view in the given CPU address
- [[nodiscard]] ImageView* TryFindFramebufferImageView(VAddr cpu_addr);
+ [[nodiscard]] ImageView* TryFindFramebufferImageView(const Tegra::FramebufferConfig& config,
+ VAddr cpu_addr);
/// Return true when there are uncommitted images to be downloaded
[[nodiscard]] bool HasUncommittedFlushes() const noexcept;