diff options
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 6b3f2d50a..a37b84b8c 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -31,6 +31,9 @@ public: | |||
| 31 | /// Draw the current batch of vertex arrays | 31 | /// Draw the current batch of vertex arrays |
| 32 | virtual void DrawArrays() = 0; | 32 | virtual void DrawArrays() = 0; |
| 33 | 33 | ||
| 34 | /// Draw the current batch of vertex arrays | ||
| 35 | virtual void DrawMultiArrays() = 0; | ||
| 36 | |||
| 34 | /// Clear the current framebuffer | 37 | /// Clear the current framebuffer |
| 35 | virtual void Clear() = 0; | 38 | virtual void Clear() = 0; |
| 36 | 39 | ||
| @@ -73,6 +76,10 @@ public: | |||
| 73 | return false; | 76 | return false; |
| 74 | } | 77 | } |
| 75 | 78 | ||
| 79 | virtual bool AccelerateDrawMultiBatch(bool is_indexed) { | ||
| 80 | return false; | ||
| 81 | } | ||
| 82 | |||
| 76 | /// Increase/decrease the number of object in pages touching the specified region | 83 | /// Increase/decrease the number of object in pages touching the specified region |
| 77 | virtual void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) {} | 84 | virtual void UpdatePagesCachedCount(VAddr addr, u64 size, int delta) {} |
| 78 | 85 | ||