VertexAttribDescriptor.cs 417 B

1234567891011121314151617
  1. namespace Ryujinx.Graphics.GAL
  2. {
  3. public struct VertexAttribDescriptor
  4. {
  5. public int BufferIndex { get; }
  6. public int Offset { get; }
  7. public Format Format { get; }
  8. public VertexAttribDescriptor(int bufferIndex, int offset, Format format)
  9. {
  10. BufferIndex = bufferIndex;
  11. Offset = offset;
  12. Format = format;
  13. }
  14. }
  15. }