Add glext.h to the precompiled header
Originally committed to SVN as r4455.
This commit is contained in:
parent
303f4990a5
commit
1b27b77ac3
2 changed files with 7 additions and 8 deletions
|
@ -236,9 +236,11 @@
|
|||
#ifdef HAVE_APPLE_OPENGL_FRAMEWORK
|
||||
#include <OpenGL/GL.h>
|
||||
#include <OpenGL/glu.h>
|
||||
#include <OpenGL/glext.h>
|
||||
#else
|
||||
#include <GL/gl.h>
|
||||
#include <GL/glu.h>
|
||||
#include "gl/glext.h"
|
||||
#endif
|
||||
|
||||
#ifdef _CRT_SECURE_NO_WARNINGS_DEFINED
|
||||
|
|
|
@ -35,25 +35,22 @@
|
|||
///
|
||||
|
||||
|
||||
///////////
|
||||
// Headers
|
||||
#include "config.h"
|
||||
|
||||
#include "gl_wrap.h"
|
||||
|
||||
#ifndef AGI_PRE
|
||||
#include <wx/msgdlg.h>
|
||||
#endif
|
||||
|
||||
#include "gl_wrap.h"
|
||||
#include "options.h"
|
||||
|
||||
#ifdef __APPLE__
|
||||
#include <OpenGL/GL.h>
|
||||
#include <OpenGL/glext.h>
|
||||
#else
|
||||
#include <GL/gl.h>
|
||||
#include "gl/glext.h"
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#include "options.h"
|
||||
|
||||
//////////////////////////
|
||||
// Extension get function
|
||||
|
|
Loading…
Reference in a new issue