blob: 7dbd9d25d47f6e846d77a70678d6a81f0952d3ec (
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,
}
}
|