2018-03-20 16:00:00 -04:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Nv
|
2018-03-12 00:04:52 -04:00
|
|
|
{
|
|
|
|
class NvMap
|
|
|
|
{
|
|
|
|
public int Handle;
|
|
|
|
public int Id;
|
|
|
|
public int Size;
|
|
|
|
public int Align;
|
|
|
|
public int Kind;
|
2018-03-20 11:18:25 -04:00
|
|
|
public long CpuAddress;
|
2018-04-13 14:12:58 -04:00
|
|
|
public long GpuAddress;
|
2018-04-25 22:11:26 -04:00
|
|
|
|
|
|
|
public NvMap() { }
|
|
|
|
|
|
|
|
public NvMap(int Size)
|
|
|
|
{
|
|
|
|
this.Size = Size;
|
|
|
|
}
|
2018-03-12 00:04:52 -04:00
|
|
|
}
|
|
|
|
}
|