Skip to content
Snippets Groups Projects
Commit 75b256ae authored by Dan Lipsa's avatar Dan Lipsa Committed by Kitware Robot
Browse files

Merge topic 'egl-query-error'


ec802f72 Query EGL error on vtkEGLRenderWindow::MakeCurrent

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Acked-by: default avatarAndrew Bauer <andy.bauer@kitware.com>
Acked-by: default avatarMathieu Westphal <mathieu.westphal@kitware.com>
Reviewed-by: default avatarKen Martin <ken.martin@kitware.com>
Merge-request: !1364
parents 2f5b6a69 ec802f72
No related branches found
No related tags found
No related merge requests found
......@@ -513,7 +513,7 @@ void vtkEGLRenderWindow::MakeCurrent()
{
if (eglMakeCurrent(impl->Display, impl->Surface, impl->Surface, impl->Context) == EGL_FALSE)
{
vtkErrorMacro("Unable to eglMakeCurrent");
vtkWarningMacro("Unable to eglMakeCurrent: " << eglGetError());
return;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment