Ejemplo n.º 1
0
        public void DrawArrays(PrimitiveType drawMode, int first, int count)
        {
            if (!BufferInitialized)
            {
                CreateBuffers();
            }

            Vao.Bind();
            Vao.DrawArrays(drawMode, first, count);
        }
Ejemplo n.º 2
0
 public void DrawArrays(PrimitiveType drawMode, int first, int count)
 {
     Vao.Bind();
     Vao.DrawArrays(drawMode, first, count);
 }