summaryrefslogblamecommitdiffstats
path: root/src/video_core/engines/shader_type.h
blob: 49ce5cde5dfa6df42a414e603f7622090582a3b3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                            
                                                

                             
// Copyright 2019 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "common/common_types.h"

namespace Tegra::Engines {

enum class ShaderType : u32 {
    Vertex = 0,
    TesselationControl = 1,
    TesselationEval = 2,
    Geometry = 3,
    Fragment = 4,
    Compute = 5,
};
static constexpr std::size_t MaxShaderTypes = 6;

} // namespace Tegra::Engines