mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-25 03:08:54 +01:00
internal/graphicsdriver/opengl/gl: use RTLD_LAZY instead of RTLD_NOW
See the discussion at #2453.
This commit is contained in:
parent
56ec19caa1
commit
fcf454ef20
@ -24,7 +24,7 @@ package gl
|
|||||||
// static void* getProcAddress(const char* name) {
|
// static void* getProcAddress(const char* name) {
|
||||||
// static void* libGL;
|
// static void* libGL;
|
||||||
// if (!libGL) {
|
// if (!libGL) {
|
||||||
// libGL = dlopen("libGL.so", RTLD_NOW | RTLD_GLOBAL);
|
// libGL = dlopen("libGL.so", RTLD_LAZY | RTLD_GLOBAL);
|
||||||
// }
|
// }
|
||||||
// static void*(*glXGetProcAddress)(const char*);
|
// static void*(*glXGetProcAddress)(const char*);
|
||||||
// if (!glXGetProcAddress) {
|
// if (!glXGetProcAddress) {
|
||||||
|
@ -24,7 +24,7 @@ package gl
|
|||||||
// static void* getProcAddress(const char* name) {
|
// static void* getProcAddress(const char* name) {
|
||||||
// static void* libGLES;
|
// static void* libGLES;
|
||||||
// if (!libGLES) {
|
// if (!libGLES) {
|
||||||
// libGLES = dlopen("libGLESv2.so", RTLD_NOW | RTLD_GLOBAL);
|
// libGLES = dlopen("libGLESv2.so", RTLD_LAZY | RTLD_GLOBAL);
|
||||||
// }
|
// }
|
||||||
// return dlsym(libGLES, name);
|
// return dlsym(libGLES, name);
|
||||||
// }
|
// }
|
||||||
|
Loading…
Reference in New Issue
Block a user