Remove all glu.h includes since no glu functions are ever used. Updates #1511.

This commit is contained in:
Thomas Goyne 2012-10-08 10:21:20 -07:00
parent db30fdedbd
commit a13d06318b
3 changed files with 0 additions and 6 deletions

View File

@ -31,11 +31,9 @@
#ifdef HAVE_OPENGL_GL_H #ifdef HAVE_OPENGL_GL_H
#include <OpenGL/gl.h> #include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#include <OpenGL/glext.h> #include <OpenGL/glext.h>
#else #else
#include <GL/gl.h> #include <GL/gl.h>
#include <GL/glu.h>
#include "gl/glext.h" #include "gl/glext.h"
#endif #endif
#endif #endif

View File

@ -50,10 +50,8 @@
#ifdef HAVE_OPENGL_GL_H #ifdef HAVE_OPENGL_GL_H
#include <OpenGL/gl.h> #include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#else #else
#include <GL/gl.h> #include <GL/gl.h>
#include <GL/glu.h>
#endif #endif
#include "video_display.h" #include "video_display.h"

View File

@ -46,10 +46,8 @@
// These must be included before local headers. // These must be included before local headers.
#ifdef HAVE_OPENGL_GL_H #ifdef HAVE_OPENGL_GL_H
#include <OpenGL/gl.h> #include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#else #else
#include <GL/gl.h> #include <GL/gl.h>
#include <GL/glu.h>
#endif #endif
#include "video_out_gl.h" #include "video_out_gl.h"