mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-22 15:53:14 +02:00
22 lines
No EOL
439 B
C#
22 lines
No EOL
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);
|
|
}
|
|
}
|
|
} |