0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-21 01:41:40 +00:00
ryujinx-fork/Ryujinx/Gpu/NsGpu.cs

22 lines
439 B
C#
Raw Normal View History

2018-02-04 23:08:20 +00:00
using Gal;
namespace Ryujinx.Gpu
{
class NsGpu
{
public IGalRenderer Renderer { get; private set; }
public NsGpuMemoryMgr MemoryMgr { get; private set; }
public NsGpuPGraph PGraph { get; private set; }
public NsGpu(IGalRenderer Renderer)
{
this.Renderer = Renderer;
MemoryMgr = new NsGpuMemoryMgr();
PGraph = new NsGpuPGraph(this);
}
}
}