mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-08-31 13:16:28 -05:00
aloha
This commit is contained in:
22
Ryujinx/Gpu/NsGpu.cs
Normal file
22
Ryujinx/Gpu/NsGpu.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user