summaryrefslogblamecommitdiffstats
path: root/src/video_core/texture_cache/format_lookup_table.h
blob: f504a6cd0ba4d754a7e37389ee546c17d47dfbf1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                                               


            




                                        



                                                                                                

                          
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include "video_core/surface.h"
#include "video_core/textures/texture.h"

namespace VideoCommon {

VideoCore::Surface::PixelFormat PixelFormatFromTextureInfo(
    Tegra::Texture::TextureFormat format, Tegra::Texture::ComponentType red_component,
    Tegra::Texture::ComponentType green_component, Tegra::Texture::ComponentType blue_component,
    Tegra::Texture::ComponentType alpha_component, bool is_srgb) noexcept;

} // namespace VideoCommon