summaryrefslogblamecommitdiffstats
path: root/src/video_core/framebuffer_config.h
blob: 5f3bffcab254f2a1bd4d5257d54f961d300320a3 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                               


            

                                

                                                               
 
                 
 



                                              




                    

                                                             



                                     
// 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/nvnflinger/buffer_transform_flags.h"
#include "core/hle/service/nvnflinger/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