mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-11-16 06:23:17 +01:00
22 lines
439 B
C#
22 lines
439 B
C#
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);
|
|
}
|
|
}
|
|
} |