glfw

dlsymdlopen

3.1.2

6 / 132 files match, 2 filtered matches.

src/egl_context.c



197 | 
198 |     for (i = 0;  sonames[i];  i++)
199 |     {
200 |         _glfw.egl.handle = _glfw_dlopen(sonames[i]);
201 |         if (_glfw.egl.handle)
202 |             break;
505 | 
506 |         for (i = 0;  sonames[i];  i++)
507 |         {
508 |             window->egl.client = _glfw_dlopen(sonames[i]);
509 |             if (window->egl.client)
510 |                 break;


src/glx_context.c



164 |     if (!_glfwCreateContextTLS())
165 |         return GL_FALSE;
166 | 
167 |     _glfw.glx.handle = dlopen(soname, RTLD_LAZY | RTLD_GLOBAL);
168 |     if (!_glfw.glx.handle)
169 |     {