diff options
| author | 2018-03-23 14:58:27 -0400 | |
|---|---|---|
| committer | 2018-03-23 14:58:27 -0400 | |
| commit | ec4e1a3685d458147ac76f4cf53ea86632d0debd (patch) | |
| tree | 0bdc8e13b56ae88459055360f02b13e943dd6199 /src/core | |
| parent | renderer_opengl: Use accelerated framebuffer load with LoadFBToScreenInfo. (diff) | |
| download | yuzu-ec4e1a3685d458147ac76f4cf53ea86632d0debd.tar.gz yuzu-ec4e1a3685d458147ac76f4cf53ea86632d0debd.tar.xz yuzu-ec4e1a3685d458147ac76f4cf53ea86632d0debd.zip | |
renderer_opengl: Better handling of framebuffer transform flags.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp | 4 | ||||
| -rw-r--r-- | src/core/hle/service/nvflinger/buffer_queue.h | 2 |
2 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 db030a8e2..f6c2b24a8 100644 --- a/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp +++ b/src/core/hle/service/nvdrv/devices/nvdisp_disp0.cpp | |||
| @@ -27,10 +27,8 @@ void nvdisp_disp0::flip(u32 buffer_handle, u32 offset, u32 format, u32 width, u3 | |||
| 27 | offset, width, height, stride, format); | 27 | offset, width, height, stride, format); |
| 28 | 28 | ||
| 29 | using PixelFormat = Tegra::FramebufferConfig::PixelFormat; | 29 | using PixelFormat = Tegra::FramebufferConfig::PixelFormat; |
| 30 | using Flags = NVFlinger::BufferQueue::BufferTransformFlags; | ||
| 31 | const bool flip_vertical = static_cast<u32>(transform) & static_cast<u32>(Flags::FlipV); | ||
| 32 | const Tegra::FramebufferConfig framebuffer{ | 30 | const Tegra::FramebufferConfig framebuffer{ |
| 33 | addr, offset, width, height, stride, static_cast<PixelFormat>(format), flip_vertical}; | 31 | addr, offset, width, height, stride, static_cast<PixelFormat>(format), transform}; |
| 34 | 32 | ||
| 35 | Core::System::GetInstance().perf_stats.EndGameFrame(); | 33 | Core::System::GetInstance().perf_stats.EndGameFrame(); |
| 36 | 34 | ||
diff --git a/src/core/hle/service/nvflinger/buffer_queue.h b/src/core/hle/service/nvflinger/buffer_queue.h index 686eadca7..1de5767cb 100644 --- a/src/core/hle/service/nvflinger/buffer_queue.h +++ b/src/core/hle/service/nvflinger/buffer_queue.h | |||
| @@ -47,6 +47,8 @@ public: | |||
| 47 | ~BufferQueue() = default; | 47 | ~BufferQueue() = default; |
| 48 | 48 | ||
| 49 | enum class BufferTransformFlags : u32 { | 49 | enum class BufferTransformFlags : u32 { |
| 50 | /// No transform flags are set | ||
| 51 | Unset = 0x00, | ||
| 50 | /// Flip source image horizontally (around the vertical axis) | 52 | /// Flip source image horizontally (around the vertical axis) |
| 51 | FlipH = 0x01, | 53 | FlipH = 0x01, |
| 52 | /// Flip source image vertically (around the horizontal axis) | 54 | /// Flip source image vertically (around the horizontal axis) |