diff options
| author | 2018-04-06 11:07:28 -0400 | |
|---|---|---|
| committer | 2018-04-06 11:07:28 -0400 | |
| commit | 37041ea12ccfc95013817ecb08319ad31b844a9a (patch) | |
| tree | 62639491af6cf33db16464fbf797270c19e2c8fa /src/video_core/rasterizer_interface.h | |
| parent | core, main.h: Abort on 32Bit ROMs (#309) (diff) | |
| parent | rasterizer_interface.h: Update from citra to yuzu (diff) | |
| download | yuzu-37041ea12ccfc95013817ecb08319ad31b844a9a.tar.gz yuzu-37041ea12ccfc95013817ecb08319ad31b844a9a.tar.xz yuzu-37041ea12ccfc95013817ecb08319ad31b844a9a.zip | |
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.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 8239f9aad..35d262189 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -21,16 +21,16 @@ public: | |||
| 21 | /// Notify rasterizer that the specified Maxwell register has been changed | 21 | /// Notify rasterizer that the specified Maxwell register has been changed |
| 22 | virtual void NotifyMaxwellRegisterChanged(u32 id) = 0; | 22 | virtual void NotifyMaxwellRegisterChanged(u32 id) = 0; |
| 23 | 23 | ||
| 24 | /// Notify rasterizer that all caches should be flushed to 3DS memory | 24 | /// Notify rasterizer that all caches should be flushed to Switch memory |
| 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 Switch memory |
| 28 | virtual void FlushRegion(VAddr addr, u64 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, u64 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 Switch memory |
| 34 | /// and invalidated | 34 | /// and invalidated |
| 35 | virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0; | 35 | virtual void FlushAndInvalidateRegion(VAddr addr, u64 size) = 0; |
| 36 | 36 | ||