mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 04:54:35 +00:00
Fix glext.h regression in glfwinfo on OS X
The glfwinfo program uses symbols not provided by the glext.h header in every development environment. Closes #572.
This commit is contained in:
parent
f8395886d3
commit
8a4e939a10
@ -23,9 +23,14 @@
|
||||
//
|
||||
//========================================================================
|
||||
|
||||
#define GLFW_INCLUDE_GLEXT
|
||||
#include <GLFW/glfw3.h>
|
||||
|
||||
/* HACK: Explicitly include the glext.h shipping with GLFW, as this program uses
|
||||
* many modern symbols not provided by the versions in some development
|
||||
* environments (for example on OS X).
|
||||
*/
|
||||
#include <GL/glext.h>
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
Loading…
Reference in New Issue
Block a user