summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2021-06-12 15:52:27 +0200
committerGravatar Fernando Sahmkow2021-07-04 22:32:03 +0200
commit38165fb7e3e486b5099cfa76f5a09ec9f3201acd (patch)
treea80e66a254960c9c8c602f256cd37361c780d188 /src/video_core/rasterizer_interface.h
parentMerge pull request #6553 from FernandoS27/bite-a-bat-change-the-world (diff)
downloadyuzu-38165fb7e3e486b5099cfa76f5a09ec9f3201acd.tar.gz
yuzu-38165fb7e3e486b5099cfa76f5a09ec9f3201acd.tar.xz
yuzu-38165fb7e3e486b5099cfa76f5a09ec9f3201acd.zip
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 07939432f..c0ba32346 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -87,6 +87,9 @@ public:
87 /// Unmap memory range 87 /// Unmap memory range
88 virtual void UnmapMemory(VAddr addr, u64 size) = 0; 88 virtual void UnmapMemory(VAddr addr, u64 size) = 0;
89 89
90 /// Unmap memory range
91 virtual void ModifyGPUMemory(GPUVAddr addr, u64 size) = 0;
92
90 /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory 93 /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
91 /// and invalidated 94 /// and invalidated
92 virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0; 95 virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0;