forked from Mirror/Ryujinx
13 lines
232 B
C#
13 lines
232 B
C#
|
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
||
|
{
|
||
|
enum OperandType
|
||
|
{
|
||
|
Attribute,
|
||
|
Constant,
|
||
|
ConstantBuffer,
|
||
|
Label,
|
||
|
LocalVariable,
|
||
|
Register,
|
||
|
Undefined
|
||
|
}
|
||
|
}
|