mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-26 17:17:43 +02:00
18 lines
307 B
C#
18 lines
307 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
struct GpuVa
|
|
{
|
|
public uint High;
|
|
public uint Low;
|
|
|
|
public ulong Pack()
|
|
{
|
|
return Low | ((ulong)High << 32);
|
|
}
|
|
|
|
public bool IsNullPtr()
|
|
{
|
|
return (Low | High) == 0;
|
|
}
|
|
}
|
|
}
|