diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-07-02 11:29:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-02 11:29:01 -0400 |
| commit | eaa62aee988454f9cbd58219aa4d82d7e152c61d (patch) | |
| tree | 8fa1e87467e9e37fce6ca159d8bb99d2ab907628 /src/video_core/rasterizer_interface.h | |
| parent | 87080e71c5f0c35ba965ffd5f48a192e0967d47a (diff) | |
| parent | 0e6b559c98e3dee54c3c9eaef2d3e59f3871882d (diff) | |
Merge pull request #10942 from FernandoS27/android-is-a-pain-in-the-a--
Memory Tracking: Add mechanism to register small writes when gpu page is contested by GPU
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 7566a8c4e..cb8029a4f 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -109,7 +109,9 @@ public: } /// Notify rasterizer that any caches of the specified region are desync with guest - virtual void OnCPUWrite(VAddr addr, u64 size) = 0; + virtual void OnCacheInvalidation(VAddr addr, u64 size) = 0; + + virtual bool OnCPUWrite(VAddr addr, u64 size) = 0; /// Sync memory between guest and host. virtual void InvalidateGPUCache() = 0; |
