aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2021-06-12 15:52:27 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2021-07-04 22:32:03 +0200
commit38165fb7e3e486b5099cfa76f5a09ec9f3201acd (patch)
treea80e66a254960c9c8c602f256cd37361c780d188 /src/video_core/rasterizer_interface.h
parenteb0e10cff2496fbf91362aa1e399b1d0b9a1d808 (diff)
Texture Cache: Initial Implementation of Sparse Textures.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-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 07939432f3..c0ba323466 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -87,6 +87,9 @@ public:
/// Unmap memory range
virtual void UnmapMemory(VAddr addr, u64 size) = 0;
+ /// Unmap memory range
+ virtual void ModifyGPUMemory(GPUVAddr addr, u64 size) = 0;
+
/// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
/// and invalidated
virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0;