Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
third-party
glew
Commits
2ca01848
Commit
2ca01848
authored
Aug 27, 2016
by
Dillon Cower
Browse files
Move #undef NOGDI from wglew_head.h to glew_head.c
parent
4a0d48fc
Changes
2
Hide whitespace changes
Inline
Side-by-side
auto/src/glew_head.c
View file @
2ca01848
...
...
@@ -6,6 +6,14 @@
#elif defined(GLEW_EGL)
# include <GL/eglew.h>
#elif defined(_WIN32)
/*
* If NOGDI is defined, wingdi.h won't be included by windows.h, and thus
* wglGetProcAddress won't be declared. It will instead be implicitly declared,
* potentially incorrectly, which we don't want.
*/
# if defined(NOGDI)
# undef NOGDI
# endif
# include <GL/wglew.h>
#elif !defined(__ANDROID__) && !defined(__native_client__) && !defined(__HAIKU__) && (!defined(__APPLE__) || defined(GLEW_APPLE_GLX))
# include <GL/glxew.h>
...
...
auto/src/wglew_head.h
View file @
2ca01848
...
...
@@ -12,14 +12,6 @@
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN 1
# endif
/*
* If NOGDI is defined, wingdi.h won't be included by windows.h, and thus
* wglGetProcAddress won't be declared. It will instead be implicitly declared
* incorrectly, which we don't want.
*/
# if defined(NOGDI)
# undef NOGDI
# endif
#include
<windows.h>
# undef WIN32_LEAN_AND_MEAN
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment