mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-22 03:28:13 +00:00
renderer_opengl: Better handling of framebuffer transform flags.
This commit is contained in:
parent
fce77a1fb1
commit
c2a48352ad
4 changed files with 23 additions and 6 deletions
|
@ -27,10 +27,8 @@ void nvdisp_disp0::flip(u32 buffer_handle, u32 offset, u32 format, u32 width, u3
|
|||
offset, width, height, stride, format);
|
||||
|
||||
using PixelFormat = Tegra::FramebufferConfig::PixelFormat;
|
||||
using Flags = NVFlinger::BufferQueue::BufferTransformFlags;
|
||||
const bool flip_vertical = static_cast<u32>(transform) & static_cast<u32>(Flags::FlipV);
|
||||
const Tegra::FramebufferConfig framebuffer{
|
||||
addr, offset, width, height, stride, static_cast<PixelFormat>(format), flip_vertical};
|
||||
addr, offset, width, height, stride, static_cast<PixelFormat>(format), transform};
|
||||
|
||||
Core::System::GetInstance().perf_stats.EndGameFrame();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue