pineapple-src/src/video_core/framebuffer_config.h

28 lines
672 B
C
Raw Normal View History

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