diff options
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 6b8b64709..9d78e8b6b 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -27,14 +27,14 @@ public: | |||
| 27 | virtual void FlushAll() = 0; | 27 | virtual void FlushAll() = 0; |
| 28 | 28 | ||
| 29 | /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory | 29 | /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory |
| 30 | virtual void FlushRegion(Tegra::GPUVAddr addr, u64 size) = 0; | 30 | virtual void FlushRegion(VAddr addr, u64 size) = 0; |
| 31 | 31 | ||
| 32 | /// Notify rasterizer that any caches of the specified region should be invalidated | 32 | /// Notify rasterizer that any caches of the specified region should be invalidated |
| 33 | virtual void InvalidateRegion(Tegra::GPUVAddr addr, u64 size) = 0; | 33 | virtual void InvalidateRegion(VAddr addr, u64 size) = 0; |
| 34 | 34 | ||
| 35 | /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory | 35 | /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory |
| 36 | /// and invalidated | 36 | /// and invalidated |
| 37 | virtual void FlushAndInvalidateRegion(Tegra::GPUVAddr addr, u64 size) = 0; | 37 | virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0; |
| 38 | 38 | ||
| 39 | /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0 | 39 | /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0 |
| 40 | virtual bool AccelerateDisplayTransfer(const void* config) { | 40 | virtual bool AccelerateDisplayTransfer(const void* config) { |