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