99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
28 lines
672 B
C++
28 lines
672 B
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#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 {
|
|
|
|
/**
|
|
* Struct describing framebuffer configuration
|
|
*/
|
|
struct FramebufferConfig {
|
|
VAddr address{};
|
|
u32 offset{};
|
|
u32 width{};
|
|
u32 height{};
|
|
u32 stride{};
|
|
Service::android::PixelFormat pixel_format{};
|
|
Service::android::BufferTransformFlags transform_flags{};
|
|
Common::Rectangle<int> crop_rect;
|
|
};
|
|
|
|
} // namespace Tegra
|