diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-25 09:42:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-25 09:42:59 -0400 |
| commit | fa913a702f94818fcddf4ffd3aaded41a41b3a3b (patch) | |
| tree | a4a994e1c91ce2fa862b681daee252e16a28159d /src/video_core/rasterizer_interface.h | |
| parent | 3c38bd7cf0dbe73f72c008cb6fc0df38b50dc986 (diff) | |
| parent | 2f90694797e30088820937855acf613bdcf27247 (diff) | |
Merge pull request #9112 from vonchenplus/deferred_draw
video_core: Reimplementing the maxwell drawing trigger mechanism
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index d2d40884c..1cbfef090 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -40,7 +40,7 @@ public: virtual ~RasterizerInterface() = default; /// Dispatches a draw invocation - virtual void Draw(bool is_indexed, bool is_instanced) = 0; + virtual void Draw(bool is_indexed, u32 instance_count) = 0; /// Clear the current framebuffer virtual void Clear() = 0; |
