From 32ad99701d88fe222ec72d4a841c964d6f1b42c6 Mon Sep 17 00:00:00 2001 From: Kelebek1 Date: Fri, 13 Oct 2023 20:45:03 +0100 Subject: Implement vertex array first and subsequent draws --- src/video_core/engines/draw_manager.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/video_core/engines/draw_manager.h') 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); -- cgit v1.2.3