13 lines
216 B
C#
13 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);
|
|
}
|
|
}
|
|
}
|