CSPspEmu.Gui.Winforms.Winforms.GLControl.ReDraw C# (CSharp) Method

ReDraw() public method

public ReDraw ( ) : void
return void
        public void ReDraw()
        {
            if (MustRefresh)
            {
                MustRefresh = false;
                this.Refresh();
            }
            else
            {
                this.Context.MakeCurrent();
                OnDrawFrame();
            }
        }