VertexBuffer.cs 269 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.Memory
  2. {
  3. /// <summary>
  4. /// GPU Vertex Buffer information.
  5. /// </summary>
  6. struct VertexBuffer
  7. {
  8. public ulong Address;
  9. public ulong Size;
  10. public int Stride;
  11. public int Divisor;
  12. }
  13. }