OperandType.cs 275 B

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