mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-21 16:43:35 +00:00
18 lines
270 B
C#
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
|
|
}
|
|
}
|