diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-10-14 15:58:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-14 15:58:11 +0200 |
commit | db562bc08dbe29e7df04aeea8bc8085d461474ba (patch) | |
tree | d0c9a64a173f74c5281e7d7feab5a8a715cd9e52 /src/video_core/engines/draw_manager.h | |
parent | Merge pull request #11159 from flodavid/master_bis (diff) | |
parent | Implement vertex array first and subsequent draws (diff) | |
download | yuzu-db562bc08dbe29e7df04aeea8bc8085d461474ba.tar yuzu-db562bc08dbe29e7df04aeea8bc8085d461474ba.tar.gz yuzu-db562bc08dbe29e7df04aeea8bc8085d461474ba.tar.bz2 yuzu-db562bc08dbe29e7df04aeea8bc8085d461474ba.tar.lz yuzu-db562bc08dbe29e7df04aeea8bc8085d461474ba.tar.xz yuzu-db562bc08dbe29e7df04aeea8bc8085d461474ba.tar.zst yuzu-db562bc08dbe29e7df04aeea8bc8085d461474ba.zip |
Diffstat (limited to 'src/video_core/engines/draw_manager.h')
-rw-r--r-- | src/video_core/engines/draw_manager.h | 2 |
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); |