Ryujinx/Ryujinx.Core/OsHle/Services/Nv/NvMap.cs
gdkchan c8c86a3854
Fix for current framebuffer issues (#78)
[GPU] Fix some of the current framebuffer issues
2018-04-13 15:12:58 -03:00

13 lines
No EOL
267 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;
}
}