mirror of
https://git.ryujinx.app/kenji-nx/ryujinx.git
synced 2025-12-17 16:37:04 +00:00
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);
|
|
}
|
|
}
|
|
}
|