From 05d80fba38eada5ec671980a5cd7276bcf14482a Mon Sep 17 00:00:00 2001 From: bunnei Date: Thu, 11 Nov 2021 18:31:05 -0800 Subject: hle: nvflinger: Move BufferTransformFlags to its own header. --- src/video_core/framebuffer_config.h | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) (limited to 'src/video_core/framebuffer_config.h') diff --git a/src/video_core/framebuffer_config.h b/src/video_core/framebuffer_config.h index 5921d830e..1e75d51ab 100644 --- a/src/video_core/framebuffer_config.h +++ b/src/video_core/framebuffer_config.h @@ -6,6 +6,7 @@ #include "common/common_types.h" #include "common/math_util.h" +#include "core/hle/service/nvflinger/buffer_transform_flags.h" #include "core/hle/service/nvflinger/pixel_format.h" namespace Tegra { @@ -14,29 +15,13 @@ namespace Tegra { * Struct describing framebuffer configuration */ struct FramebufferConfig { - enum class TransformFlags : u32 { - /// No transform flags are set - Unset = 0x00, - /// Flip source image horizontally (around the vertical axis) - FlipH = 0x01, - /// Flip source image vertically (around the horizontal axis) - FlipV = 0x02, - /// Rotate source image 90 degrees clockwise - Rotate90 = 0x04, - /// Rotate source image 180 degrees - Rotate180 = 0x03, - /// Rotate source image 270 degrees clockwise - Rotate270 = 0x07, - }; - VAddr address{}; u32 offset{}; u32 width{}; u32 height{}; u32 stride{}; - - TransformFlags transform_flags{}; android::PixelFormat pixel_format{}; + android::BufferTransformFlags transform_flags{}; Common::Rectangle crop_rect; }; -- cgit v1.2.3