1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-29 19:16:47 -06:00

14 lines
216 B
C#

namespace Ryujinx.Graphics.Gpu.State
{
struct GpuVa
{
public uint High;
public uint Low;
public ulong Pack()
{
return Low | ((ulong)High << 32);
}
}
}