diff options
| author | 2023-12-16 11:47:21 -0500 | |
|---|---|---|
| committer | 2023-12-16 11:47:21 -0500 | |
| commit | 3bc7575c47f2460b249702c2844687b6c0106cc8 (patch) | |
| tree | 540ca2ced701b86da44fbd674dedbdcf81b83117 /src/video_core/rasterizer_interface.h | |
| parent | Merge pull request #12358 from liamwhite/optimized-alloc (diff) | |
| parent | video_core: lock interval map update (diff) | |
| download | yuzu-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.h | 2 |
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, |