summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar FengChen2022-10-21 15:38:50 +0800
committerGravatar FengChen2022-10-21 17:09:22 +0800
commit1f54cd4ac78dd1af48490dcc404bec4adf2876f3 (patch)
tree92b3ef5859262f2141e90344cd9179ed8895ec23 /src/video_core/rasterizer_interface.h
parentMerge pull request #9088 from Fdawgs/chore/images (diff)
downloadyuzu-1f54cd4ac78dd1af48490dcc404bec4adf2876f3.tar.gz
yuzu-1f54cd4ac78dd1af48490dcc404bec4adf2876f3.tar.xz
yuzu-1f54cd4ac78dd1af48490dcc404bec4adf2876f3.zip
video_coare: Reimplementing the maxwell drawing trigger mechanism
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h2
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:
40 virtual ~RasterizerInterface() = default; 40 virtual ~RasterizerInterface() = default;
41 41
42 /// Dispatches a draw invocation 42 /// Dispatches a draw invocation
43 virtual void Draw(bool is_indexed, bool is_instanced) = 0; 43 virtual void Draw(bool is_indexed, u32 instance_count) = 0;
44 44
45 /// Clear the current framebuffer 45 /// Clear the current framebuffer
46 virtual void Clear() = 0; 46 virtual void Clear() = 0;