Exemplo n.º 1
0
 public void BindBuffer(GLBufferTarget target, GLBufferHandle buffer)
 {
     try
     {
         this.BeginFunc();
         this._gl.BindBuffer(target, buffer);
     }
     finally
     {
         this.EndFunc();
     }
 }
Exemplo n.º 2
0
 public void DeleteBuffer(GLBufferHandle buffer)
 {
     try
     {
         this.BeginFunc();
         this._gl.DeleteBuffer(buffer);
     }
     finally
     {
         this.EndFunc();
     }
 }
Exemplo n.º 3
0
Arquivo: GL.cs Projeto: mortend/uno
 public void BindBuffer(GLBufferTarget target, GLBufferHandle buffer)
 {
     TKGL.BindBuffer((BufferTarget)target, (int)buffer);
 }
Exemplo n.º 4
0
Arquivo: GL.cs Projeto: mortend/uno
 public void DeleteBuffer(GLBufferHandle buffer)
 {
     DisposeAndRemoveObject(_buffers, (int)buffer);
 }
Exemplo n.º 5
0
Arquivo: GL.cs Projeto: yongaru/uno
 public static void DeleteBuffer(GLBufferHandle buffer)
 {
     GL._gl.DeleteBuffer(buffer);
 }
Exemplo n.º 6
0
Arquivo: GL.cs Projeto: yongaru/uno
 public static void BindBuffer(GLBufferTarget target, GLBufferHandle buffer)
 {
     GL._gl.BindBuffer(target, buffer);
 }
Exemplo n.º 7
0
 public void BindBuffer(GLBufferTarget target, GLBufferHandle buffer)
 {
 }
Exemplo n.º 8
0
 public void DeleteBuffer(GLBufferHandle buffer)
 {
 }