summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-22 21:04:30 -0400
committerGravatar bunnei2018-03-22 21:04:30 -0400
commitbfe45774f16e958bf34ed0d58a1d31e2325df47d (patch)
tree44504233efc7690eca7149eccdcb6a0074f694e1 /src/core
parentgl_rasterizer: Replace a bunch of UNIMPLEMENTED with ASSERT. (diff)
downloadyuzu-bfe45774f16e958bf34ed0d58a1d31e2325df47d.tar.gz
yuzu-bfe45774f16e958bf34ed0d58a1d31e2325df47d.tar.xz
yuzu-bfe45774f16e958bf34ed0d58a1d31e2325df47d.zip
video_core: Move FramebufferInfo to FramebufferConfig in GPU.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
index 94530724e..7cd1d9306 100644
--- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp
@@ -26,14 +26,14 @@ void nvdisp_disp0::flip(u32 buffer_handle, u32 offset, u32 format, u32 width, u3
26 "Drawing from address %lx offset %08X Width %u Height %u Stride %u Format %u", addr, 26 "Drawing from address %lx offset %08X Width %u Height %u Stride %u Format %u", addr,
27 offset, width, height, stride, format); 27 offset, width, height, stride, format);
28 28
29 using PixelFormat = RendererBase::FramebufferInfo::PixelFormat; 29 using PixelFormat = Tegra::FramebufferConfig::PixelFormat;
30 using Flags = NVFlinger::BufferQueue::BufferTransformFlags; 30 using Flags = NVFlinger::BufferQueue::BufferTransformFlags;
31 const bool flip_vertical = static_cast<u32>(transform) & static_cast<u32>(Flags::FlipV); 31 const bool flip_vertical = static_cast<u32>(transform) & static_cast<u32>(Flags::FlipV);
32 const RendererBase::FramebufferInfo framebuffer_info{ 32 const Tegra::FramebufferConfig framebuffer{
33 addr, offset, width, height, stride, static_cast<PixelFormat>(format), flip_vertical}; 33 addr, offset, width, height, stride, static_cast<PixelFormat>(format), flip_vertical};
34 34
35 Core::System::GetInstance().perf_stats.EndGameFrame(); 35 Core::System::GetInstance().perf_stats.EndGameFrame();
36 VideoCore::g_renderer->SwapBuffers(framebuffer_info); 36 VideoCore::g_renderer->SwapBuffers(framebuffer);
37} 37}
38 38
39} // namespace Devices 39} // namespace Devices