aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-06 11:07:28 -0400
committerGitHub <noreply@github.com>2018-04-06 11:07:28 -0400
commit37041ea12ccfc95013817ecb08319ad31b844a9a (patch)
tree62639491af6cf33db16464fbf797270c19e2c8fa /src/video_core/rasterizer_interface.h
parent358050cfc6cb88b5bfd3997f1e3f1e135ae808e6 (diff)
parentd1d7582a5bd00ca6c63bc47c1da10910ec00f9c8 (diff)
Merge pull request #310 from N00byKing/patch-1
Update multiple comments from citra to yuzu
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 8239f9aad..35d262189 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -21,16 +21,16 @@ public:
/// Notify rasterizer that the specified Maxwell register has been changed
virtual void NotifyMaxwellRegisterChanged(u32 id) = 0;
- /// Notify rasterizer that all caches should be flushed to 3DS memory
+ /// Notify rasterizer that all caches should be flushed to Switch memory
virtual void FlushAll() = 0;
- /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory
+ /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
virtual void FlushRegion(VAddr addr, u64 size) = 0;
/// Notify rasterizer that any caches of the specified region should be invalidated
virtual void InvalidateRegion(VAddr addr, u64 size) = 0;
- /// Notify rasterizer that any caches of the specified region should be flushed to 3DS memory
+ /// Notify rasterizer that any caches of the specified region should be flushed to Switch memory
/// and invalidated
virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0;