diff options
| author | 2022-02-09 15:00:05 +0100 | |
|---|---|---|
| committer | 2023-01-01 16:43:57 -0500 | |
| commit | a5a94f52ffcbf3119d272a9369021a213ea6dad2 (patch) | |
| tree | ba6d42b142894d0f3f0ac34fb6ce491442bae8fd /src/video_core/rasterizer_interface.h | |
| parent | Merge pull request #9538 from merryhime/char-concat (diff) | |
| download | yuzu-a5a94f52ffcbf3119d272a9369021a213ea6dad2.tar.gz yuzu-a5a94f52ffcbf3119d272a9369021a213ea6dad2.tar.xz yuzu-a5a94f52ffcbf3119d272a9369021a213ea6dad2.zip | |
MacroHLE: Add MultidrawIndirect HLE Macro.
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 b6907463c..a2a651f34 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -42,6 +42,9 @@ public: | |||
| 42 | /// Dispatches a draw invocation | 42 | /// Dispatches a draw invocation |
| 43 | virtual void Draw(bool is_indexed, u32 instance_count) = 0; | 43 | virtual void Draw(bool is_indexed, u32 instance_count) = 0; |
| 44 | 44 | ||
| 45 | /// Dispatches an indirect draw invocation | ||
| 46 | virtual void DrawIndirect(bool is_indexed) {} | ||
| 47 | |||
| 45 | /// Clear the current framebuffer | 48 | /// Clear the current framebuffer |
| 46 | virtual void Clear(u32 layer_count) = 0; | 49 | virtual void Clear(u32 layer_count) = 0; |
| 47 | 50 | ||