mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
internal/graphicsdriver/opengl/gl: dynamic-load functions with GLX
Updates #292 Updates #2450
This commit is contained in:
parent
f093996284
commit
072e91d67f
@ -16,13 +16,24 @@
|
||||
|
||||
package gl
|
||||
|
||||
// #cgo pkg-config: gl
|
||||
// #cgo LDFLAGS: -ldl
|
||||
//
|
||||
// #include <dlfcn.h>
|
||||
// #include <stdlib.h>
|
||||
// #include <GL/glx.h>
|
||||
//
|
||||
// static void* getProcAddress(const char* name) {
|
||||
// return glXGetProcAddress((const GLubyte *) name);
|
||||
// static void* libGL;
|
||||
// if (!libGL) {
|
||||
// libGL = dlopen("libGL.so", RTLD_NOW | RTLD_GLOBAL);
|
||||
// }
|
||||
// static void*(*glXGetProcAddress)(const char*);
|
||||
// if (!glXGetProcAddress) {
|
||||
// glXGetProcAddress = dlsym(libGL, "glXGetProcAddress");
|
||||
// if (!glXGetProcAddress) {
|
||||
// glXGetProcAddress = dlsym(libGL, "glXGetProcAddressARB");
|
||||
// }
|
||||
// }
|
||||
// return glXGetProcAddress(name);
|
||||
// }
|
||||
import "C"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user