Exemplo n.º 1
0
 private void GLControl1_Render(object sender, GLContextEventArgs e)
 {
     e.Context.Clear(ClearBufferMask.ColorBufferBit);
 }
Exemplo n.º 2
0
 protected virtual void OnRender(GLContextEventArgs e)
 {
     if (this.Render != null)
         this.Render(this, e);
 }
Exemplo n.º 3
0
 private void GLControl1_GLContextCreated(object sender, GLContextEventArgs e)
 {
     e.Context.ClearColor(1, 0, 0, 1);
 }
Exemplo n.º 4
0
 protected virtual void OnContextCreated(GLContextEventArgs e)
 {
     if (this.GLContextCreated != null)
         this.GLContextCreated(this, e);
 }