summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-29 00:43:08 +0200
committerbunnei <bunneidev@gmail.com>2018-08-31 19:07:27 +0200
commit16d65182f99ed1066c8e88a774d0a3637f97ae01 (patch)
tree3c10dfc449c7ebeaf40b9c249a9b483a714ecf3e /src/video_core/rasterizer_interface.h
parentImplement BC6H_UF16 & BC6H_SF16 (#1092) (diff)
downloadyuzu-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 '')
-rw-r--r--src/video_core/rasterizer_interface.h3
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