Exemplo n.º 1
0
 /// <summary>
 /// Bind the specified <see cref="GraphicsBuffer"/> to this Vertex Array
 /// </summary>
 /// <param name="buffer"><see cref="GraphicsBuffer"/> to bind</param>
 public void BindBuffer(GraphicsBuffer buffer)
 {
     Bind();
     buffer.Bind();
 }