Пример #1
0
 /// <inheritdoc />
 public bool Equals(GPUBufferDescription other)
 {
     return(Size == other.Size &&
            Stride == other.Stride &&
            Flags == other.Flags &&
            Format == other.Format &&
            InitData.Equals(other.InitData) &&
            Usage == other.Usage);
 }