mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-21 07:00:18 +00:00
21 lines
297 B
C#
21 lines
297 B
C#
using System;
|
|
|
|
namespace Ryujinx.Graphics.Shader.Translation
|
|
{
|
|
[Flags]
|
|
enum AggregateType
|
|
{
|
|
Invalid,
|
|
Void,
|
|
Bool,
|
|
FP32,
|
|
FP64,
|
|
S32,
|
|
U32,
|
|
|
|
ElementTypeMask = 0xff,
|
|
|
|
Vector = 1 << 8,
|
|
Array = 1 << 9
|
|
}
|
|
}
|