2018-02-20 21:09:23 +01:00
|
|
|
using Ryujinx.Graphics.Gal;
|
|
|
|
|
2018-09-08 19:51:50 +02:00
|
|
|
namespace Ryujinx.Graphics
|
2018-02-20 21:09:23 +01:00
|
|
|
{
|
2018-09-08 19:51:50 +02:00
|
|
|
public class NvGpu
|
2018-02-20 21:09:23 +01:00
|
|
|
{
|
|
|
|
public IGalRenderer Renderer { get; private set; }
|
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
public GpuResourceManager ResourceManager { get; private set; }
|
|
|
|
|
2018-04-13 20:12:58 +02:00
|
|
|
public NvGpuFifo Fifo { get; private set; }
|
2018-04-08 21:17:35 +02:00
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
internal NvGpuEngine2d Engine2d { get; private set; }
|
|
|
|
internal NvGpuEngine3d Engine3d { get; private set; }
|
|
|
|
internal NvGpuEngineM2mf EngineM2mf { get; private set; }
|
|
|
|
internal NvGpuEngineP2mf EngineP2mf { get; private set; }
|
2018-04-08 21:17:35 +02:00
|
|
|
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 20:53:23 +02:00
|
|
|
public NvGpu(IGalRenderer Renderer)
|
2018-02-20 21:09:23 +01:00
|
|
|
{
|
|
|
|
this.Renderer = Renderer;
|
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
ResourceManager = new GpuResourceManager(this);
|
|
|
|
|
2018-04-08 21:17:35 +02:00
|
|
|
Fifo = new NvGpuFifo(this);
|
|
|
|
|
2018-09-18 06:30:35 +02:00
|
|
|
Engine2d = new NvGpuEngine2d(this);
|
|
|
|
Engine3d = new NvGpuEngine3d(this);
|
|
|
|
EngineM2mf = new NvGpuEngineM2mf(this);
|
|
|
|
EngineP2mf = new NvGpuEngineP2mf(this);
|
2018-04-08 21:17:35 +02:00
|
|
|
}
|
2018-02-20 21:09:23 +01:00
|
|
|
}
|
|
|
|
}
|