Esempio n. 1
0
 //Action[] InstructionSwitch = new Action[256];
 /// <summary>
 /// Constructor
 /// </summary>
 internal GpuDisplayList(PspMemory Memory, GpuProcessor GpuProcessor, int Id)
 {
     this.Memory = Memory;
     this.GpuProcessor = GpuProcessor;
     this.Id = Id;
     GpuDisplayListRunner = new GpuDisplayListRunner()
     {
         GpuDisplayList = this,
     };
 }
Esempio n. 2
0
 //Action[] InstructionSwitch = new Action[256];
 /// <summary>
 /// Constructor
 /// </summary>
 internal GpuDisplayList(PspMemory Memory, GpuProcessor GpuProcessor, int Id)
 {
     this.Memory = Memory;
     this.GpuProcessor = GpuProcessor;
     this.Id = Id;
     this.GlobalGpuState = GpuProcessor.GlobalGpuState;
     this.GpuDisplayListRunner = new GpuDisplayListRunner(this, GpuProcessor.GlobalGpuState);
 }