summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar Markus Wick2018-09-06 14:51:24 +0200
committerGravatar Markus Wick2018-09-10 22:03:10 +0200
commitc5600435817ff751d2a5550ded54a033ccf0c15b (patch)
tree922fab62ab36727876f9acf22d3aace750478c1a /src/video_core/rasterizer_interface.h
parentMerge pull request #1281 from bunnei/multi-rt (diff)
downloadyuzu-c5600435817ff751d2a5550ded54a033ccf0c15b.tar.gz
yuzu-c5600435817ff751d2a5550ded54a033ccf0c15b.tar.xz
yuzu-c5600435817ff751d2a5550ded54a033ccf0c15b.zip
rasterizer: Drop unused handler.
This virtual function is called in a very hot spot, and it does nothing. If this kind of feature is required, please be more specific and add callbacks in the switch statement within Maxwell3D::WriteReg. There is no point in having another switch statement within the rasterizer.
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index 9d78e8b6b..cd819d69f 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -20,9 +20,6 @@ public:
20 /// Clear the current framebuffer 20 /// Clear the current framebuffer
21 virtual void Clear() = 0; 21 virtual void Clear() = 0;
22 22
23 /// Notify rasterizer that the specified Maxwell register has been changed
24 virtual void NotifyMaxwellRegisterChanged(u32 method) = 0;
25
26 /// Notify rasterizer that all caches should be flushed to Switch memory 23 /// Notify rasterizer that all caches should be flushed to Switch memory
27 virtual void FlushAll() = 0; 24 virtual void FlushAll() = 0;
28 25