mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 13:56:50 +00: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;
|
|
}
|
|
}
|
|
} |