Example #1
0
 public void DrawElements(BeginMode mode, int count, DrawElementType type, int[] indices)
 {
     gl.glDrawElements((int)mode, count, (int)type, indices);
     CheckException();
 }
Example #2
0
 public static void DrawElements(BeginMode mode, int count, DrawElementType type, int[] indices)
 {
     gl.glDrawElements((int)mode, count, (int)type, indices);
 }