diff options
| author | 2019-01-13 22:05:53 -0300 | |
|---|---|---|
| committer | 2019-02-06 22:20:57 -0300 | |
| commit | 0ed5d728ca12e407685b62802dec69b455f1a528 (patch) | |
| tree | d421d986e0a250cea73bd2675ec234af29a96997 /src/video_core/rasterizer_interface.h | |
| parent | file_util: Add shader directory (diff) | |
| download | yuzu-0ed5d728ca12e407685b62802dec69b455f1a528.tar.gz yuzu-0ed5d728ca12e407685b62802dec69b455f1a528.tar.xz yuzu-0ed5d728ca12e407685b62802dec69b455f1a528.zip | |
rasterizer_interface: Add disk cache entry for the rasterizer
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 4c08bb148..bb4bc0e36 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -61,5 +61,8 @@ public: | |||
| 61 | 61 | ||
| 62 | /// Increase/decrease the number of object in pages touching the specified region | 62 | /// Increase/decrease the number of object in pages touching the specified region |
| 63 | virtual void UpdatePagesCachedCount(Tegra::GPUVAddr addr, u64 size, int delta) {} | 63 | virtual void UpdatePagesCachedCount(Tegra::GPUVAddr addr, u64 size, int delta) {} |
| 64 | |||
| 65 | /// Initialize disk cached resources for the game being emulated | ||
| 66 | virtual void LoadDiskResources() {} | ||
| 64 | }; | 67 | }; |
| 65 | } // namespace VideoCore | 68 | } // namespace VideoCore |