mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 01:55:27 +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;
|
|
}
|
|
}
|
|
} |