mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 09:53:35 +01:00
14 lines
249 B
C#
14 lines
249 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
/// <summary>
|
|
/// Shader stage name.
|
|
/// </summary>
|
|
enum ShaderType
|
|
{
|
|
Vertex,
|
|
TessellationControl,
|
|
TessellationEvaluation,
|
|
Geometry,
|
|
Fragment
|
|
}
|
|
}
|