public MacroInterpreter(NvGpuFifo PFifo, INvGpuEngine Engine) { this.PFifo = PFifo; this.Engine = Engine; Fifo = new Queue <int>(); Gprs = new int[8]; }
public NvGpu(IGalRenderer Renderer) { this.Renderer = Renderer; Fifo = new NvGpuFifo(this); Engine2d = new NvGpuEngine2d(this); Engine3d = new NvGpuEngine3d(this); KeepRunning = true; FifoProcessing = new Thread(ProcessFifo); FifoProcessing.Start(); }