video_core: Implement opengl/vulkan draw_texture

This commit is contained in:
Feng Chen 2023-01-05 12:28:48 +08:00
parent 1e8cee2ddf
commit 013b689153
19 changed files with 284 additions and 131 deletions

View file

@ -46,6 +46,9 @@ public:
/// Dispatches an indirect draw invocation
virtual void DrawIndirect() {}
/// Dispatches an draw texture invocation
virtual void DrawTexture() = 0;
/// Clear the current framebuffer
virtual void Clear(u32 layer_count) = 0;