make the openGL stuff do nothing if null

This commit is contained in:
Adam D. Ruppe 2016-02-01 13:53:48 -05:00
parent 847903e443
commit 55c8a53b09
1 changed files with 3 additions and 2 deletions

View File

@ -936,10 +936,11 @@ class SimpleWindow : CapableOfHandlingNativeEvent {
void redrawOpenGlSceneNow() {
version(X11) if (!this._visible) return; // no need to do this if window is invisible
if (this._closed) return; // window may be closed, but timer is still firing; avoid GLXBadDrawable error
if(redrawOpenGlScene is null)
return;
this.setAsCurrentOpenGlContext();
if(redrawOpenGlScene !is null)
redrawOpenGlScene();
this.swapOpenGlBuffers();