diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-29 00:43:08 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-08-31 19:07:27 +0200 |
commit | 16d65182f99ed1066c8e88a774d0a3637f97ae01 (patch) | |
tree | 3c10dfc449c7ebeaf40b9c249a9b483a714ecf3e /src/video_core/rasterizer_interface.h | |
parent | Implement BC6H_UF16 & BC6H_SF16 (#1092) (diff) | |
download | yuzu-16d65182f99ed1066c8e88a774d0a3637f97ae01.tar yuzu-16d65182f99ed1066c8e88a774d0a3637f97ae01.tar.gz yuzu-16d65182f99ed1066c8e88a774d0a3637f97ae01.tar.bz2 yuzu-16d65182f99ed1066c8e88a774d0a3637f97ae01.tar.lz yuzu-16d65182f99ed1066c8e88a774d0a3637f97ae01.tar.xz yuzu-16d65182f99ed1066c8e88a774d0a3637f97ae01.tar.zst yuzu-16d65182f99ed1066c8e88a774d0a3637f97ae01.zip |
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 a4a219d8d..6b8b64709 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -60,5 +60,8 @@ public: virtual bool AccelerateDrawBatch(bool is_indexed) { return false; } + + /// Increase/decrease the number of object in pages touching the specified region + virtual void UpdatePagesCachedCount(Tegra::GPUVAddr addr, u64 size, int delta) {} }; } // namespace VideoCore |