Example #1
0
 public void AddMask(PostProcTile other)
 {
     for (int ii = 0; ii < (int)PostProcType.Count; ii++)
     {
         Status[ii] |= other.Status[ii];
     }
 }
Example #2
0
 public PostProcTile(PostProcTile other) : this()
 {
     other.Status.CopyTo(Status, 0);
 }