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