video_core: Move FramebufferInfo to FramebufferConfig in GPU.

This commit is contained in:
bunnei 2018-03-22 21:04:30 -04:00
parent c6362543d4
commit bfe45774f1
8 changed files with 77 additions and 69 deletions

View file

@ -5,6 +5,7 @@
#pragma once
#include "common/common_types.h"
#include "video_core/gpu.h"
struct ScreenInfo;
@ -49,7 +50,8 @@ public:
}
/// Attempt to use a faster method to display the framebuffer to screen
virtual bool AccelerateDisplay(const void* config, PAddr framebuffer_addr, u32 pixel_stride,
virtual bool AccelerateDisplay(const Tegra::FramebufferConfig& framebuffer,
PAddr framebuffer_addr, u32 pixel_stride,
ScreenInfo& screen_info) {
return false;
}