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