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
|
|
}
|
|
}
|