summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/draw_manager.h
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2023-10-13 21:45:03 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2023-10-14 13:09:35 +0200
commit32ad99701d88fe222ec72d4a841c964d6f1b42c6 (patch)
tree0ae2e505a667a11c348bc5fc610c51bca39891c6 /src/video_core/engines/draw_manager.h
parentMerge pull request #11772 from v1993/polyfill-thread-fixes (diff)
downloadyuzu-32ad99701d88fe222ec72d4a841c964d6f1b42c6.tar
yuzu-32ad99701d88fe222ec72d4a841c964d6f1b42c6.tar.gz
yuzu-32ad99701d88fe222ec72d4a841c964d6f1b42c6.tar.bz2
yuzu-32ad99701d88fe222ec72d4a841c964d6f1b42c6.tar.lz
yuzu-32ad99701d88fe222ec72d4a841c964d6f1b42c6.tar.xz
yuzu-32ad99701d88fe222ec72d4a841c964d6f1b42c6.tar.zst
yuzu-32ad99701d88fe222ec72d4a841c964d6f1b42c6.zip
Diffstat (limited to 'src/video_core/engines/draw_manager.h')
-rw-r--r--src/video_core/engines/draw_manager.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/draw_manager.h b/src/video_core/engines/draw_manager.h
index 18d959143..cfc8127fc 100644
--- a/src/video_core/engines/draw_manager.h
+++ b/src/video_core/engines/draw_manager.h
@@ -66,6 +66,8 @@ public:
void DrawArray(PrimitiveTopology topology, u32 vertex_first, u32 vertex_count,
u32 base_instance, u32 num_instances);
+ void DrawArrayInstanced(PrimitiveTopology topology, u32 vertex_first, u32 vertex_count,
+ bool subsequent);
void DrawIndex(PrimitiveTopology topology, u32 index_first, u32 index_count, u32 base_index,
u32 base_instance, u32 num_instances);