Ryujinx/Ryujinx.Graphics.Gpu/State/ShaderType.cs

15 lines
249 B
C#
Raw Normal View History

2019-10-13 08:02:07 +02:00
namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Shader stage name.
/// </summary>
2019-10-13 08:02:07 +02:00
enum ShaderType
{
Vertex,
TessellationControl,
TessellationEvaluation,
Geometry,
Fragment
}
}