diff options
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 8ef7e74c7..4b099bc55 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -36,11 +36,11 @@ public: | |||
| 36 | virtual void FlushAll() = 0; | 36 | virtual void FlushAll() = 0; |
| 37 | 37 | ||
| 38 | /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory | 38 | /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory |
| 39 | virtual void FlushRegion(PAddr addr, u32 size) = 0; | 39 | virtual void FlushRegion(PAddr addr, u64 size) = 0; |
| 40 | 40 | ||
| 41 | /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory | 41 | /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory |
| 42 | /// and invalidated | 42 | /// and invalidated |
| 43 | virtual void FlushAndInvalidateRegion(PAddr addr, u32 size) = 0; | 43 | virtual void FlushAndInvalidateRegion(PAddr addr, u64 size) = 0; |
| 44 | 44 | ||
| 45 | /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0 | 45 | /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0 |
| 46 | virtual bool AccelerateDisplayTransfer(const GPU::Regs::DisplayTransferConfig& config) { | 46 | virtual bool AccelerateDisplayTransfer(const GPU::Regs::DisplayTransferConfig& config) { |