Skip to content
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

Open
sbr-dev opened this issue May 28, 2020 · 5 comments
Open

glewInit() failes with EGL, returning GLEW_ERROR_NO_GLX_DISPLAY #273

sbr-dev opened this issue May 28, 2020 · 5 comments

Comments

@sbr-dev
Copy link

sbr-dev commented May 28, 2020

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 :

    if(GLenum err = glewInit(); GLEW_OK != err ) { 

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 :

    if(GLenum err = glewInit(); GLEW_OK != err && err != GLEW_ERROR_NO_GLX_DISPLAY) {

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,

@nigels-com
Copy link
Owner

See also:

flathub/io.github.endless_sky.endless_sky#1
endless-sky/endless-sky#5217
endless-sky/endless-sky#5230

My first impression is that building GLEW with -DGLEW_EGL ought to resolve this.

Lenum GLEWAPIENTRY glewInit (void)
{
  GLenum r;
#if defined(GLEW_EGL)
  PFNEGLGETCURRENTDISPLAYPROC getCurrentDisplay = NULL;
#endif
  r = glewContextInit();
  if ( r != 0 ) return r;
#if defined(GLEW_EGL)
  getCurrentDisplay = (PFNEGLGETCURRENTDISPLAYPROC) glewGetProcAddress("eglGetCurrentDisplay");
  return eglewInit(getCurrentDisplay());
#elif defined(GLEW_OSMESA) || defined(__ANDROID__) || defined(__native_client__) || defined(__HAIKU__)
  return r;
#elif defined(_WIN32)
  return wglewInit();
#elif !defined(__APPLE__) || defined(GLEW_APPLE_GLX) /* _UNIX */
  return glxewInit();
#else
  return r;
#endif /* _WIN32 */
}

@nigels-com
Copy link
Owner

Is the root problem here both GLX and EGL modes are supported by the application?

@eternal-sorrow
Copy link

So? Is this fixed?

@nigels-com
Copy link
Owner

building GLEW with -DGLEW_EGL ought to resolve this.

@sbr-dev
Copy link
Author

sbr-dev commented Mar 21, 2021

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:

cd glew-2.2.0 && make SYSTEM=linux-egl install.all && cd ..
ln -s /usr/lib64/libGLEW.so.2.2 /usr/lib/libGLEW.so.2.2

I'd expect to avoir these errors as linux-egl is specified. Is this build method deprecated ?

Again, apologies for this late reply

Cheers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants