0
0
Fork 0
This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
ryujinx-final/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);
}
}
}