summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar liamwhite2023-01-19 14:58:53 -0500
committerGravatar GitHub2023-01-19 14:58:53 -0500
commit475370c8f89002e3b508eb152b981a5b89049d68 (patch)
tree79a145e24f2bf5ab5baca6824cae6cd525a8d170 /src/video_core/rasterizer_interface.h
parentMerge pull request #9623 from liamwhite/wp-oops (diff)
parentAddress feedback (diff)
downloadyuzu-475370c8f89002e3b508eb152b981a5b89049d68.tar.gz
yuzu-475370c8f89002e3b508eb152b981a5b89049d68.tar.xz
yuzu-475370c8f89002e3b508eb152b981a5b89049d68.zip
Merge pull request #9556 from vonchenplus/draw_texture
video_core: Implement maxwell3d draw texture method
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index 1735b6164..33e2610bc 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -47,6 +47,9 @@ public:
47 /// Dispatches an indirect draw invocation 47 /// Dispatches an indirect draw invocation
48 virtual void DrawIndirect() {} 48 virtual void DrawIndirect() {}
49 49
50 /// Dispatches an draw texture invocation
51 virtual void DrawTexture() = 0;
52
50 /// Clear the current framebuffer 53 /// Clear the current framebuffer
51 virtual void Clear(u32 layer_count) = 0; 54 virtual void Clear(u32 layer_count) = 0;
52 55