diff options
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp | 6 |
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 |