VertexBuffer.cs 193 B

12345678910
  1. namespace Ryujinx.Graphics.Gpu.Memory
  2. {
  3. struct VertexBuffer
  4. {
  5. public ulong Address;
  6. public ulong Size;
  7. public int Stride;
  8. public int Divisor;
  9. }
  10. }