mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-30 01:10:47 -07:00
13 lines
311 B
C#
13 lines
311 B
C#
namespace Ryujinx.HLE.HOS.Services.Nv.NvGpuAS
|
|
{
|
|
internal struct NvGpuASMapBufferEx
|
|
{
|
|
public int Flags;
|
|
public int Kind;
|
|
public int NvMapHandle;
|
|
public int PageSize;
|
|
public long BufferOffset;
|
|
public long MappingSize;
|
|
public long Offset;
|
|
}
|
|
} |