Added GLFW_INCLUDE_GL3 macro.

This commit is contained in:
Camilla Berglund
2011-09-16 04:44:40 +02:00
parent d0af26cd43
commit d88789e5e3
2 changed files with 18 additions and 9 deletions
+17 -9
View File
@@ -158,16 +158,24 @@ extern "C" {
* (which is not a nice solution for portable programs).
*/
#if defined(__APPLE_CC__)
#define GL_GLEXT_LEGACY
#include <OpenGL/gl.h>
#ifndef GLFW_NO_GLU
#include <OpenGL/glu.h>
#endif
#if defined(GLFW_INCLUDE_GL3)
#include <OpenGL/gl3.h>
#else
#define GL_GLEXT_LEGACY
#include <OpenGL/gl.h>
#endif
#ifndef GLFW_NO_GLU
#include <OpenGL/glu.h>
#endif
#else
#include <GL/gl.h>
#ifndef GLFW_NO_GLU
#include <GL/glu.h>
#endif
#if defined(GLFW_INCLUDE_GL3)
#include <GL3/gl3.h>
#else
#include <GL/gl.h>
#endif
#ifndef GLFW_NO_GLU
#include <GL/glu.h>
#endif
#endif