CSharpGL.GLCanvas.DoOpenGLDraw C# (CSharp) Method

DoOpenGLDraw() private method

Call this function in derived classes to do the OpenGL Draw event.
private DoOpenGLDraw ( PaintEventArgs e ) : void
e PaintEventArgs
return void
        private void DoOpenGLDraw(PaintEventArgs e)
        {
            EventHandler<PaintEventArgs> handler = this.OpenGLDraw;
            if (handler != null)
            {
                handler(this, e);
            }
        }