diff options
| author | 2021-06-12 15:52:27 +0200 | |
|---|---|---|
| committer | 2021-07-04 22:32:03 +0200 | |
| commit | 38165fb7e3e486b5099cfa76f5a09ec9f3201acd (patch) | |
| tree | a80e66a254960c9c8c602f256cd37361c780d188 /src/video_core/rasterizer_interface.h | |
| parent | Merge pull request #6553 from FernandoS27/bite-a-bat-change-the-world (diff) | |
| download | yuzu-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.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 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; |