Ejemplo n.º 1
0
 public void DrawElements(GLPrimitiveType mode, int count, GLIndexType type, int offset)
 {
     try
     {
         this.BeginFunc();
         this._gl.DrawElements(mode, count, type, offset);
     }
     finally
     {
         this.EndFunc();
     }
 }
Ejemplo n.º 2
0
Archivo: GL.cs Proyecto: yongaru/uno
 public static void DrawElements(GLPrimitiveType mode, int count, GLIndexType type, int offset)
 {
     GL._gl.DrawElements(mode, count, type, offset);
 }
Ejemplo n.º 3
0
Archivo: GL.cs Proyecto: mortend/uno
 public void DrawElements(GLPrimitiveType mode, int count, GLIndexType type, int offset)
 {
     TKGL.DrawElements((BeginMode)mode, count, (DrawElementsType)type, offset);
 }
Ejemplo n.º 4
0
 public void DrawElements(GLPrimitiveType mode, int count, GLIndexType type, int offset)
 {
 }