summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvflinger/pixel_format.h
blob: 8a77d8beae2584eb563e1e6d2f84c000bf1ff817 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright 2021 yuzu Emulator Project

#pragma once

#include "common/common_types.h"

namespace Service::android {

enum class PixelFormat : u32 {
    NoFormat = 0,
    Rgba8888 = 1,
    Rgbx8888 = 2,
    Rgb888 = 3,
    Rgb565 = 4,
    Bgra8888 = 5,
    Rgba5551 = 6,
    Rgba4444 = 7,
};

} // namespace Service::android