IOpCodeAttribute.cs 193 B

123456789
  1. namespace Ryujinx.Graphics.Shader.Decoders
  2. {
  3. interface IOpCodeAttribute : IOpCode
  4. {
  5. int AttributeOffset { get; }
  6. int Count { get; }
  7. bool Indexed { get; }
  8. }
  9. }