diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-03 19:34:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-03 19:34:34 -0400 |
| commit | c996787d8433f8bd3603957594ac15b0f075fd86 (patch) | |
| tree | daf350f31f619f5321f73a262f1936c92b01d7dd /src/video_core/rasterizer_interface.h | |
| parent | 4030f600dc1a282c2ed5a54aac6695b816eee466 (diff) | |
| parent | 78443a7f2929dece8d2509d50642df9478aeb166 (diff) | |
Merge pull request #609 from Subv/clear_buffers
GPU: Implemented the CLEAR_BUFFERS register.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 145e58334..499e84b89 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -19,6 +19,9 @@ public: /// Draw the current batch of vertex arrays virtual void DrawArrays() = 0; + /// Clear the current framebuffer + virtual void Clear() = 0; + /// Notify rasterizer that the specified Maxwell register has been changed virtual void NotifyMaxwellRegisterChanged(u32 method) = 0; |
