mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-12-27 19:13:04 +00:00
Add files via upload
This commit is contained in:
parent
97ce41b3d4
commit
c0e47c7bc9
1 changed files with 47 additions and 47 deletions
|
@ -1,47 +1,47 @@
|
||||||
using Ryujinx.Graphics.Gal;
|
using Ryujinx.Graphics.Gal;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
|
|
||||||
namespace Ryujinx.HLE.Gpu
|
namespace Ryujinx.HLE.Gpu
|
||||||
{
|
{
|
||||||
class NvGpu
|
class NvGpu
|
||||||
{
|
{
|
||||||
public IGalRenderer Renderer { get; private set; }
|
public IGalRenderer Renderer { get; private set; }
|
||||||
|
|
||||||
public NvGpuFifo Fifo { get; private set; }
|
public NvGpuFifo Fifo { get; private set; }
|
||||||
|
|
||||||
public NvGpuEngine2d Engine2d { get; private set; }
|
public NvGpuEngine2d Engine2d { get; private set; }
|
||||||
public NvGpuEngine3d Engine3d { get; private set; }
|
public NvGpuEngine3d Engine3d { get; private set; }
|
||||||
public NvGpuEngineDma EngineDma { get; private set; }
|
public NvGpuEngineDma EngineDma { get; private set; }
|
||||||
|
|
||||||
private Thread FifoProcessing;
|
private Thread FifoProcessing;
|
||||||
|
|
||||||
private bool KeepRunning;
|
private bool KeepRunning;
|
||||||
|
|
||||||
public NvGpu(IGalRenderer Renderer)
|
public NvGpu(IGalRenderer Renderer)
|
||||||
{
|
{
|
||||||
this.Renderer = Renderer;
|
this.Renderer = Renderer;
|
||||||
|
|
||||||
Fifo = new NvGpuFifo(this);
|
Fifo = new NvGpuFifo(this);
|
||||||
|
|
||||||
Engine2d = new NvGpuEngine2d(this);
|
Engine2d = new NvGpuEngine2d(this);
|
||||||
Engine3d = new NvGpuEngine3d(this);
|
Engine3d = new NvGpuEngine3d(this);
|
||||||
EngineDma = new NvGpuEngineDma(this);
|
EngineDma = new NvGpuEngineDma(this);
|
||||||
|
|
||||||
KeepRunning = true;
|
KeepRunning = true;
|
||||||
|
|
||||||
FifoProcessing = new Thread(ProcessFifo);
|
FifoProcessing = new Thread(ProcessFifo);
|
||||||
|
|
||||||
FifoProcessing.Start();
|
FifoProcessing.Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ProcessFifo()
|
private void ProcessFifo()
|
||||||
{
|
{
|
||||||
while (KeepRunning)
|
while (KeepRunning)
|
||||||
{
|
{
|
||||||
Fifo.DispatchCalls();
|
Fifo.DispatchCalls();
|
||||||
|
|
||||||
Thread.Yield();
|
Thread.Yield();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue