mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-01 22:57:43 +02:00
20 lines
No EOL
377 B
C#
20 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |