mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-12-01 14:27:27 +00:00
11 lines
No EOL
210 B
C#
11 lines
No EOL
210 B
C#
namespace Ryujinx.Graphics.Gpu.Memory
|
|
{
|
|
/// <summary>
|
|
/// Memory range used for buffers.
|
|
/// </summary>
|
|
struct BufferBounds
|
|
{
|
|
public ulong Address;
|
|
public ulong Size;
|
|
}
|
|
} |