CSPspEmu.Core.Gpu.GpuDisplayList.SetFree C# (CSharp) Method

SetFree() public method

public SetFree ( ) : void
return void
        public void SetFree()
        {
            //Status2.SetValue(Status2Enum.Free);
            Available = true;
        }

Usage Example

Example #1
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="GpuDisplayList"></param>
 public void EnqueueFreeDisplayList(GpuDisplayList GpuDisplayList)
 {
     //Console.WriteLine("EnqueueFreeDisplayList: {0}", this.DisplayListFreeQueue.Count);
     lock (DisplayListFreeQueue)
     {
         DisplayListFreeQueue.Enqueue(GpuDisplayList);
         GpuDisplayList.SetFree();
     }
     DisplayListFreeEvent.Set();
 }
All Usage Examples Of CSPspEmu.Core.Gpu.GpuDisplayList::SetFree