OperandType.cs 232 B

12345678910111213
  1. namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
  2. {
  3. enum OperandType
  4. {
  5. Attribute,
  6. Constant,
  7. ConstantBuffer,
  8. Label,
  9. LocalVariable,
  10. Register,
  11. Undefined
  12. }
  13. }