mirror of
https://github.com/gwm17/glfw.git
synced 2024-11-27 04:28:52 -05:00
Fixed regression breaking the dlopen code path.
This commit is contained in:
parent
194e865bd6
commit
dbc9489f38
|
@ -35,22 +35,6 @@ void (*glXGetProcAddress(const GLubyte* procName))();
|
||||||
void (*glXGetProcAddressARB(const GLubyte* procName))();
|
void (*glXGetProcAddressARB(const GLubyte* procName))();
|
||||||
void (*glXGetProcAddressEXT(const GLubyte* procName))();
|
void (*glXGetProcAddressEXT(const GLubyte* procName))();
|
||||||
|
|
||||||
// We support four different ways for getting addresses for GL/GLX
|
|
||||||
// extension functions: glXGetProcAddress, glXGetProcAddressARB,
|
|
||||||
// glXGetProcAddressEXT, and dlsym
|
|
||||||
#if defined(_GLFW_HAS_GLXGETPROCADDRESSARB)
|
|
||||||
#define _glfw_glXGetProcAddress(x) glXGetProcAddressARB(x)
|
|
||||||
#elif defined(_GLFW_HAS_GLXGETPROCADDRESS)
|
|
||||||
#define _glfw_glXGetProcAddress(x) glXGetProcAddress(x)
|
|
||||||
#elif defined(_GLFW_HAS_GLXGETPROCADDRESSEXT)
|
|
||||||
#define _glfw_glXGetProcAddress(x) glXGetProcAddressEXT(x)
|
|
||||||
#elif defined(_GLFW_HAS_DLOPEN)
|
|
||||||
#define _glfw_glXGetProcAddress(x) dlsym(_glfwLibrary.X11.libGL, x)
|
|
||||||
#define _GLFW_DLOPEN_LIBGL
|
|
||||||
#else
|
|
||||||
#error "No OpenGL entry point retrieval mechanism was enabled"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
////// GLFW internal API //////
|
////// GLFW internal API //////
|
||||||
|
|
|
@ -69,6 +69,22 @@
|
||||||
#include <X11/XKBlib.h>
|
#include <X11/XKBlib.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// We support four different ways for getting addresses for GL/GLX
|
||||||
|
// extension functions: glXGetProcAddress, glXGetProcAddressARB,
|
||||||
|
// glXGetProcAddressEXT, and dlsym
|
||||||
|
#if defined(_GLFW_HAS_GLXGETPROCADDRESSARB)
|
||||||
|
#define _glfw_glXGetProcAddress(x) glXGetProcAddressARB(x)
|
||||||
|
#elif defined(_GLFW_HAS_GLXGETPROCADDRESS)
|
||||||
|
#define _glfw_glXGetProcAddress(x) glXGetProcAddress(x)
|
||||||
|
#elif defined(_GLFW_HAS_GLXGETPROCADDRESSEXT)
|
||||||
|
#define _glfw_glXGetProcAddress(x) glXGetProcAddressEXT(x)
|
||||||
|
#elif defined(_GLFW_HAS_DLOPEN)
|
||||||
|
#define _glfw_glXGetProcAddress(x) dlsym(_glfwLibrary.X11.libGL, x)
|
||||||
|
#define _GLFW_DLOPEN_LIBGL
|
||||||
|
#else
|
||||||
|
#error "No OpenGL entry point retrieval mechanism was enabled"
|
||||||
|
#endif
|
||||||
|
|
||||||
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowX11 X11
|
#define _GLFW_PLATFORM_WINDOW_STATE _GLFWwindowX11 X11
|
||||||
#define _GLFW_PLATFORM_LIBRARY_STATE _GLFWlibraryX11 X11
|
#define _GLFW_PLATFORM_LIBRARY_STATE _GLFWlibraryX11 X11
|
||||||
#define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextGLX GLX
|
#define _GLFW_PLATFORM_CONTEXT_STATE _GLFWcontextGLX GLX
|
||||||
|
|
Loading…
Reference in New Issue
Block a user