コード例 #1
0
ファイル: VertexBufferBinding.cs プロジェクト: glepag1/stride
 public bool Equals(VertexBufferBinding other)
 {
     return(Buffer.Equals(other.Buffer) && Offset == other.Offset && Stride == other.Stride && Count == other.Count && Declaration.Equals(other.Declaration));
 }