summaryrefslogtreecommitdiff
path: root/src/video_core/hwrasterizer_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/hwrasterizer_base.h')
-rw-r--r--src/video_core/hwrasterizer_base.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/hwrasterizer_base.h b/src/video_core/hwrasterizer_base.h
index 54b8892fb..b6390950a 100644
--- a/src/video_core/hwrasterizer_base.h
+++ b/src/video_core/hwrasterizer_base.h
@@ -32,14 +32,14 @@ public:
32 virtual void DrawTriangles() = 0; 32 virtual void DrawTriangles() = 0;
33 33
34 /// Commit the rasterizer's framebuffer contents immediately to the current 3DS memory framebuffer 34 /// Commit the rasterizer's framebuffer contents immediately to the current 3DS memory framebuffer
35 virtual void CommitFramebuffer() = 0; 35 virtual void FlushFramebuffer() = 0;
36 36
37 /// Notify rasterizer that the specified PICA register has been changed 37 /// Notify rasterizer that the specified PICA register has been changed
38 virtual void NotifyPicaRegisterChanged(u32 id) = 0; 38 virtual void NotifyPicaRegisterChanged(u32 id) = 0;
39 39
40 /// Notify rasterizer that the specified 3DS memory region will be read from after this notification 40 /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory.
41 virtual void NotifyPreRead(PAddr addr, u32 size) = 0; 41 virtual void FlushRegion(PAddr addr, u32 size) = 0;
42 42
43 /// Notify rasterizer that a 3DS memory region has been changed 43 /// Notify rasterizer that any caches of the specified region should be discraded and reloaded from 3DS memory.
44 virtual void NotifyFlush(PAddr addr, u32 size) = 0; 44 virtual void InvalidateRegion(PAddr addr, u32 size) = 0;
45}; 45};