示例#1
0
 public void DrawElements(BeginMode mode, int count, DrawElementType type, int[] indices)
 {
     gl.glDrawElements((int)mode, count, (int)type, indices);
     CheckException();
 }
示例#2
0
文件: GL.cs 项目: Wiladams/NewTOAPIA
 public static void DrawElements(BeginMode mode, int count, DrawElementType type, int[] indices)
 {
     gl.glDrawElements((int)mode, count, (int)type, indices);
 }