-
Notifications
You must be signed in to change notification settings - Fork 639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
glewInit() failes with EGL, returning GLEW_ERROR_NO_GLX_DISPLAY #273
Comments
See also: flathub/io.github.endless_sky.endless_sky#1 My first impression is that building GLEW with -DGLEW_EGL ought to resolve this.
|
Is the root problem here both GLX and EGL modes are supported by the application? |
So? Is this fixed? |
|
Hi @nigels-com Huge apologies for my late reply, got very busy at work since the beginning of the year.. Actually, we're building manually glew using this:
I'd expect to avoir these errors as Again, apologies for this late reply Cheers |
Hi,
We're using GLEW 2.2.0 built with EGL support to test our software on the CI, using llmpipe renderer for offscreen rendering. To do so, we had to build glew with EGL enabled.
Headless testing is fine on our computer locally.
On the CI (for instance CircleCI), glewInit() failes :
returning the error code
GLEW_ERROR_NO_GLX_DISPLAY
.This is totally expected, since we're running headlessly without any X server (whereas there exists one on our developpement computer, that's why it wasn't triggered).
Actual hack is to ignore this error :
Then everything runs smoothly on the CI.
IMPO, I do think this error code shouldn't exists when running EGL as this is something we can encounter when using EGL.
Cheers,
The text was updated successfully, but these errors were encountered: