Merge pull request #656 from MarioLiebisch/android-nosurface-display

[Android] Don't try to display without a surface
This commit is contained in:
Jonathan De Wachter 2014-07-08 18:03:42 +02:00
commit 0a64da654c

View File

@ -180,7 +180,8 @@ bool EglContext::makeCurrent()
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
void EglContext::display() void EglContext::display()
{ {
eglCheck(eglSwapBuffers(m_display, m_surface)); if (m_surface != EGL_NO_SURFACE)
eglCheck(eglSwapBuffers(m_display, m_surface));
} }