Ryujinx/Ryujinx.Graphics.Shader/Translation/AggregateType.cs
2022-06-17 22:42:30 +01:00

18 lines
270 B
C#

namespace Ryujinx.Graphics.Shader.Translation
{
enum AggregateType
{
Invalid,
Void,
Bool,
FP32,
FP64,
S32,
U32,
ElementTypeMask = 0xff,
Vector = 1 << 8,
Array = 1 << 9
}
}