mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-09 12:45:25 +00:00
15 lines
249 B
C#
15 lines
249 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
/// <summary>
|
|
/// Shader stage name.
|
|
/// </summary>
|
|
enum ShaderType
|
|
{
|
|
Vertex,
|
|
TessellationControl,
|
|
TessellationEvaluation,
|
|
Geometry,
|
|
Fragment
|
|
}
|
|
}
|