mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-05-14 00:35:16 +00:00
20 lines
377 B
C#
20 lines
377 B
C#
namespace Ryujinx.Core.OsHle.Services.Nv
|
|
{
|
|
class NvMap
|
|
{
|
|
public int Handle;
|
|
public int Id;
|
|
public int Size;
|
|
public int Align;
|
|
public int Kind;
|
|
public long CpuAddress;
|
|
public long GpuAddress;
|
|
|
|
public NvMap() { }
|
|
|
|
public NvMap(int Size)
|
|
{
|
|
this.Size = Size;
|
|
}
|
|
}
|
|
} |