mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-22 05:45:07 +00:00
Windows fixup for glGetProcAddressREGAL
This commit is contained in:
parent
0aeace842f
commit
6718b2ccd6
@ -41,10 +41,15 @@
|
||||
libRegal.so glGetProcAddressREGAL for looking up
|
||||
the GL function pointers. */
|
||||
|
||||
#undef glGetProcAddressREGAL
|
||||
extern void *glGetProcAddressREGAL(const GLchar *name);
|
||||
static PFNGLGETPROCADDRESSREGALPROC regalGetProcAddress = glGetProcAddressREGAL;
|
||||
#define glGetProcAddressREGAL GLEW_GET_FUN(__glewGetProcAddressREGAL)
|
||||
# undef glGetProcAddressREGAL
|
||||
# ifdef WIN32
|
||||
extern void * __stdcall glGetProcAddressREGAL(const GLchar *name);
|
||||
static void * (__stdcall * regalGetProcAddress) (const GLchar *) = glGetProcAddressREGAL;
|
||||
# else
|
||||
extern void * glGetProcAddressREGAL(const GLchar *name);
|
||||
static void * (*regalGetProcAddress) (const GLchar *) = glGetProcAddressREGAL;
|
||||
# endif
|
||||
# define glGetProcAddressREGAL GLEW_GET_FUN(__glewGetProcAddressREGAL)
|
||||
|
||||
#elif defined(__sgi) || defined (__sun) || defined(__HAIKU__) || defined(GLEW_APPLE_GLX)
|
||||
#include <dlfcn.h>
|
||||
|
Loading…
Reference in New Issue
Block a user