[vk] batched draws

Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
lizzie 2026-02-22 21:58:31 +00:00
parent 0574d7d2c9
commit 47e3533bd9
10 changed files with 134 additions and 116 deletions

View file

@ -39,6 +39,9 @@ class RasterizerInterface {
public:
virtual ~RasterizerInterface() = default;
/// Flushes draws batched by Draw()
virtual void FlushBatchedDraws() = 0;
/// Dispatches a draw invocation
virtual void Draw(bool is_indexed, u32 instance_count) = 0;