BufferBounds.cs 210 B

1234567891011
  1. namespace Ryujinx.Graphics.Gpu.Memory
  2. {
  3. /// <summary>
  4. /// Memory range used for buffers.
  5. /// </summary>
  6. struct BufferBounds
  7. {
  8. public ulong Address;
  9. public ulong Size;
  10. }
  11. }