diff options
Diffstat (limited to 'src/video_core/rasterizer_interface.h')
| -rw-r--r-- | src/video_core/rasterizer_interface.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/video_core/rasterizer_interface.h b/src/video_core/rasterizer_interface.h index 6c7bd0826..966e25f34 100644 --- a/src/video_core/rasterizer_interface.h +++ b/src/video_core/rasterizer_interface.h | |||
| @@ -5,6 +5,7 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include "common/common_types.h" | 7 | #include "common/common_types.h" |
| 8 | #include "video_core/gpu.h" | ||
| 8 | 9 | ||
| 9 | struct ScreenInfo; | 10 | struct ScreenInfo; |
| 10 | 11 | ||
| @@ -49,7 +50,8 @@ public: | |||
| 49 | } | 50 | } |
| 50 | 51 | ||
| 51 | /// 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 |
| 52 | virtual bool AccelerateDisplay(const void* config, PAddr framebuffer_addr, u32 pixel_stride, | 53 | virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& framebuffer, |
| 54 | PAddr framebuffer_addr, u32 pixel_stride, | ||
| 53 | ScreenInfo& screen_info) { | 55 | ScreenInfo& screen_info) { |
| 54 | return false; | 56 | return false; |
| 55 | } | 57 | } |