summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar liamwhite2023-12-16 11:47:21 -0500
committerGravatar GitHub2023-12-16 11:47:21 -0500
commit3bc7575c47f2460b249702c2844687b6c0106cc8 (patch)
tree540ca2ced701b86da44fbd674dedbdcf81b83117 /src/video_core/rasterizer_interface.h
parentMerge pull request #12358 from liamwhite/optimized-alloc (diff)
parentvideo_core: lock interval map update (diff)
downloadyuzu-3bc7575c47f2460b249702c2844687b6c0106cc8.tar.gz
yuzu-3bc7575c47f2460b249702c2844687b6c0106cc8.tar.xz
yuzu-3bc7575c47f2460b249702c2844687b6c0106cc8.zip
Merge pull request #12344 from liamwhite/its-free-real-estate
video_core: use interval map for page count tracking
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index af1469147..fd42d26b5 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -162,7 +162,7 @@ public:
162 } 162 }
163 163
164 /// Increase/decrease the number of object in pages touching the specified region 164 /// Increase/decrease the number of object in pages touching the specified region
165 virtual void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) {} 165 virtual void UpdatePagesCachedCount(VAddr addr, u64 size, bool cache) {}
166 166
167 /// Initialize disk cached resources for the game being emulated 167 /// Initialize disk cached resources for the game being emulated
168 virtual void LoadDiskResources(u64 title_id, std::stop_token stop_loading, 168 virtual void LoadDiskResources(u64 title_id, std::stop_token stop_loading,