mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-19 05:26:29 +02:00
Partial GPU DMA support (#158)
This commit is contained in:
parent
f1e866e248
commit
36827c2355
4 changed files with 178 additions and 6 deletions
|
@ -9,8 +9,9 @@ namespace Ryujinx.HLE.Gpu
|
|||
|
||||
public NvGpuFifo Fifo { get; private set; }
|
||||
|
||||
public NvGpuEngine2d Engine2d { get; private set; }
|
||||
public NvGpuEngine3d Engine3d { get; private set; }
|
||||
public NvGpuEngine2d Engine2d { get; private set; }
|
||||
public NvGpuEngine3d Engine3d { get; private set; }
|
||||
public NvGpuEngineDma EngineDma { get; private set; }
|
||||
|
||||
private Thread FifoProcessing;
|
||||
|
||||
|
@ -22,8 +23,9 @@ namespace Ryujinx.HLE.Gpu
|
|||
|
||||
Fifo = new NvGpuFifo(this);
|
||||
|
||||
Engine2d = new NvGpuEngine2d(this);
|
||||
Engine3d = new NvGpuEngine3d(this);
|
||||
Engine2d = new NvGpuEngine2d(this);
|
||||
Engine3d = new NvGpuEngine3d(this);
|
||||
EngineDma = new NvGpuEngineDma(this);
|
||||
|
||||
KeepRunning = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue