diff options
author | N00byKing <N00byKing@users.noreply.github.com> | 2018-04-04 23:07:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-04 23:07:58 +0200 |
commit | d1d7582a5bd00ca6c63bc47c1da10910ec00f9c8 (patch) | |
tree | 94fbc58019219e5c00b800e666e401e184d13971 /src/video_core/rasterizer_interface.h | |
parent | 1f37dd02ce2b3c93915cc05e3715fc71da6e00d5 (diff) |
rasterizer_interface.h: Update from citra to yuzu
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 8239f9aad5..35d2621898 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; |