yuzu/src/video_core/framebuffer_config.h

28 lines
672 B
C
Raw Normal View History

2022-04-23 22:49:07 +04:00
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 19:15:37 +04:00
#pragma once
2021-10-02 10:41:27 +04:00
#include "common/common_types.h"
#include "common/math_util.h"
2022-06-06 06:39:45 +04:00
#include "core/hle/service/nvflinger/buffer_transform_flags.h"
#include "core/hle/service/nvflinger/pixel_format.h"
2020-12-28 19:15:37 +04:00
2021-10-02 10:41:27 +04:00
namespace Tegra {
2022-06-06 06:39:45 +04:00
2020-12-28 19:15:37 +04:00
/**
* Struct describing framebuffer configuration
*/
struct FramebufferConfig {
VAddr address{};
u32 offset{};
u32 width{};
u32 height{};
u32 stride{};
2022-06-06 06:39:45 +04:00
Service::android::PixelFormat pixel_format{};
Service::android::BufferTransformFlags transform_flags{};
2020-12-28 19:15:37 +04:00
Common::Rectangle<int> crop_rect;
};
} // namespace Tegra