blob: e0e2a6675ad9196b3375a28f062271b4a4241170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
{
enum OperandType
{
Attribute,
Constant,
ConstantBuffer,
GlobalMemory,
Label,
LocalMemory,
LocalVariable,
Register,
Undefined
}
}
|