summaryrefslogtreecommitdiffstats
path: root/src/video_core/rasterizer_interface.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-21 01:34:02 +0200
committerLioncash <mathew1800@gmail.com>2018-08-21 01:43:05 +0200
commit46ef072cf9e0636f7ba9f1414fdabeb607a88e0f (patch)
treeaf01f55406fdd493806ffc640e03519a0228b7ca /src/video_core/rasterizer_interface.h
parentrenderer_base: Make creation of the rasterizer, the responsibility of the renderers themselves (diff)
downloadyuzu-46ef072cf9e0636f7ba9f1414fdabeb607a88e0f.tar
yuzu-46ef072cf9e0636f7ba9f1414fdabeb607a88e0f.tar.gz
yuzu-46ef072cf9e0636f7ba9f1414fdabeb607a88e0f.tar.bz2
yuzu-46ef072cf9e0636f7ba9f1414fdabeb607a88e0f.tar.lz
yuzu-46ef072cf9e0636f7ba9f1414fdabeb607a88e0f.tar.xz
yuzu-46ef072cf9e0636f7ba9f1414fdabeb607a88e0f.tar.zst
yuzu-46ef072cf9e0636f7ba9f1414fdabeb607a88e0f.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/rasterizer_interface.h4
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 @@
#include "video_core/gpu.h"
#include "video_core/memory_manager.h"
-struct ScreenInfo;
-
namespace VideoCore {
class RasterizerInterface {
@@ -55,7 +53,7 @@ public:
/// Attempt to use a faster method to display the framebuffer to screen
virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& config, VAddr framebuffer_addr,
- u32 pixel_stride, ScreenInfo& screen_info) {
+ u32 pixel_stride) {
return false;
}