summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-23 15:01:45 -0400
committerGravatar bunnei2018-03-23 15:01:45 -0400
commit11047d7fd511fd9ae6130da7bc824fefa6fb64c1 (patch)
treef8609ebc8e4caaa5457066b4e6c22321e86af8be /src/video_core/rasterizer_interface.h
parentrenderer_opengl: Add framebuffer_transform_flags member variable. (diff)
downloadyuzu-11047d7fd511fd9ae6130da7bc824fefa6fb64c1.tar.gz
yuzu-11047d7fd511fd9ae6130da7bc824fefa6fb64c1.tar.xz
yuzu-11047d7fd511fd9ae6130da7bc824fefa6fb64c1.zip
rasterizer: Flush and invalidate regions should be 64-bit.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index 6514d7ded..a493e1d60 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -25,14 +25,14 @@ public:
25 virtual void FlushAll() = 0; 25 virtual void FlushAll() = 0;
26 26
27 /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory 27 /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory
28 virtual void FlushRegion(VAddr addr, u32 size) = 0; 28 virtual void FlushRegion(VAddr addr, u64 size) = 0;
29 29
30 /// Notify rasterizer that any caches of the specified region should be invalidated 30 /// Notify rasterizer that any caches of the specified region should be invalidated
31 virtual void InvalidateRegion(VAddr addr, u32 size) = 0; 31 virtual void InvalidateRegion(VAddr addr, u64 size) = 0;
32 32
33 /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory 33 /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory
34 /// and invalidated 34 /// and invalidated
35 virtual void FlushAndInvalidateRegion(VAddr addr, u32 size) = 0; 35 virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0;
36 36
37 /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0 37 /// Attempt to use a faster method to perform a display transfer with is_texture_copy = 0
38 virtual bool AccelerateDisplayTransfer(const void* config) { 38 virtual bool AccelerateDisplayTransfer(const void* config) {