Removed support for GLU.

This commit is contained in:
binary1248 2015-01-12 18:15:11 +01:00
parent 97bdf72ce1
commit e2420dfe76
6 changed files with 11 additions and 12 deletions

View file

@ -33,7 +33,7 @@
////////////////////////////////////////////////////////////
/// This file just includes the OpenGL (GL and GLU) headers,
/// This file just includes the OpenGL headers,
/// which have actually different paths on each system
////////////////////////////////////////////////////////////
#if defined(SFML_SYSTEM_WINDOWS)
@ -44,7 +44,6 @@
#endif
#include <GL/gl.h>
#include <GL/glu.h>
#elif defined(SFML_SYSTEM_LINUX) || defined(SFML_SYSTEM_FREEBSD)
@ -53,13 +52,11 @@
#include <GLES/glext.h>
#else
#include <GL/gl.h>
#include <GL/glu.h>
#endif
#elif defined(SFML_SYSTEM_MACOS)
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#elif defined (SFML_SYSTEM_IOS)