summaryrefslogtreecommitdiff
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorGravatar bunnei2019-02-01 12:48:38 -0500
committerGravatar GitHub2019-02-01 12:48:38 -0500
commit3a6eef27a2bc5f44c81db08336a7924666a0bc51 (patch)
tree6dae81f219f5bc5d6f7f0da69dbdab2ce3c626cc /src/video_core/rasterizer_interface.h
parentMerge pull request #2072 from lioncash/service (diff)
parentrasterizer_interface: Remove unused AccelerateFill operation (diff)
downloadyuzu-3a6eef27a2bc5f44c81db08336a7924666a0bc51.tar.gz
yuzu-3a6eef27a2bc5f44c81db08336a7924666a0bc51.tar.xz
yuzu-3a6eef27a2bc5f44c81db08336a7924666a0bc51.zip
Merge pull request #2079 from ReinUsesLisp/remove-fill
video_core: Remove unused Fill related code
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
-rw-r--r--src/video_core/rasterizer_interface.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h
index ff5310848..4c08bb148 100644
--- a/src/video_core/rasterizer_interface.h
+++ b/src/video_core/rasterizer_interface.h
@@ -49,11 +49,6 @@ public:
49 return false; 49 return false;
50 } 50 }
51 51
52 /// Attempt to use a faster method to fill a region
53 virtual bool AccelerateFill(const void* config) {
54 return false;
55 }
56
57 /// Attempt to use a faster method to display the framebuffer to screen 52 /// Attempt to use a faster method to display the framebuffer to screen
58 virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& config, VAddr framebuffer_addr, 53 virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& config, VAddr framebuffer_addr,
59 u32 pixel_stride) { 54 u32 pixel_stride) {