Merge pull request #9556 from vonchenplus/draw_texture

video_core: Implement maxwell3d draw texture method
This commit is contained in:
liamwhite 2023-01-19 14:58:53 -05:00 committed by GitHub
commit 475370c8f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 495 additions and 118 deletions

View file

@ -47,6 +47,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;