diff options
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 499e84b89..a4a219d8d 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -8,8 +8,6 @@ | |||
| 8 | #include "video_core/gpu.h" | 8 | #include "video_core/gpu.h" |
| 9 | #include "video_core/memory_manager.h" | 9 | #include "video_core/memory_manager.h" |
| 10 | 10 | ||
| 11 | struct ScreenInfo; | ||
| 12 | |||
| 13 | namespace VideoCore { | 11 | namespace VideoCore { |
| 14 | 12 | ||
| 15 | class RasterizerInterface { | 13 | class RasterizerInterface { |
| @@ -55,7 +53,7 @@ public: | |||
| 55 | 53 | ||
| 56 | /// Attempt to use a faster method to display the framebuffer to screen | 54 | /// Attempt to use a faster method to display the framebuffer to screen |
| 57 | virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& config, VAddr framebuffer_addr, | 55 | virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& config, VAddr framebuffer_addr, |
| 58 | u32 pixel_stride, ScreenInfo& screen_info) { | 56 | u32 pixel_stride) { |
| 59 | return false; | 57 | return false; |
| 60 | } | 58 | } |
| 61 | 59 | ||