public bool Equal(ShadowTextureConfig other)
 {
     return width == other.width && height == other.height && format == other.format;
 }
Exemple #2
0
 public bool Equals(ShadowTextureConfig other)
 {
     return(this.width == other.width && this.height == other.height && this.format == other.format);
 }
 public bool Equal(ShadowTextureConfig other)
 {
     return(width == other.width && height == other.height && format == other.format);
 }