diff options
author | Feng Chen <vonchenplus@gmail.com> | 2023-01-05 05:28:48 +0100 |
---|---|---|
committer | Feng Chen <vonchenplus@gmail.com> | 2023-01-05 05:41:33 +0100 |
commit | 013b6891531b37e0f882b8b88d404feb63370617 (patch) | |
tree | cbfeebc7a015f15004028056c8932c000201e1fc /src/video_core/rasterizer_interface.h | |
parent | video_core: Implement maxwell3d draw texture method (diff) | |
download | yuzu-013b6891531b37e0f882b8b88d404feb63370617.tar yuzu-013b6891531b37e0f882b8b88d404feb63370617.tar.gz yuzu-013b6891531b37e0f882b8b88d404feb63370617.tar.bz2 yuzu-013b6891531b37e0f882b8b88d404feb63370617.tar.lz yuzu-013b6891531b37e0f882b8b88d404feb63370617.tar.xz yuzu-013b6891531b37e0f882b8b88d404feb63370617.tar.zst yuzu-013b6891531b37e0f882b8b88d404feb63370617.zip |
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r-- | src/video_core/rasterizer_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index f44c7df50..f980b12c6 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h @@ -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; |