summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-04-17 21:45:36 -0400
committerGravatar GitHub2018-04-17 21:45:36 -0400
commit9dc0d13ba5cb9003df735b6bd67064f6b0419c00 (patch)
tree4e53136b745e4e31ee8ce17de70e408357816730 /src/video_core/rasterizer_interface.h
parentMerge pull request #341 from shinyquagsire23/pfs-hfs-impl (diff)
parentrenderer_opengl: Implement BlendEquation and BlendFunc. (diff)
downloadyuzu-9dc0d13ba5cb9003df735b6bd67064f6b0419c00.tar.gz
yuzu-9dc0d13ba5cb9003df735b6bd67064f6b0419c00.tar.xz
yuzu-9dc0d13ba5cb9003df735b6bd67064f6b0419c00.zip
Merge pull request #345 from bunnei/blending
renderer_opengl: Implement BlendEquation and BlendFunc.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index 35d262189..36629dd11 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -19,7 +19,7 @@ public:
19 virtual void DrawArrays() = 0; 19 virtual void DrawArrays() = 0;
20 20
21 /// Notify rasterizer that the specified Maxwell register has been changed 21 /// Notify rasterizer that the specified Maxwell register has been changed
22 virtual void NotifyMaxwellRegisterChanged(u32 id) = 0; 22 virtual void NotifyMaxwellRegisterChanged(u32 method) = 0;
23 23
24 /// Notify rasterizer that all caches should be flushed to Switch memory 24 /// Notify rasterizer that all caches should be flushed to Switch memory
25 virtual void FlushAll() = 0; 25 virtual void FlushAll() = 0;