diff options
author | Bjørn Erik Nilsen <bjorn.nilsen@nokia.com> | 2010-08-09 12:07:01 (GMT) |
---|---|---|
committer | Bjørn Erik Nilsen <bjorn.nilsen@nokia.com> | 2010-08-10 09:31:49 (GMT) |
commit | e7eed096a0c33607a7a37baaf06e5952dc9d556b (patch) | |
tree | d14165030715bc3fe9be43adac48d8ab43cb122e /src/opengl | |
parent | 3af33f5eddb3624654141b3f7b0cbb9a49e94438 (diff) | |
download | Qt-e7eed096a0c33607a7a37baaf06e5952dc9d556b.zip Qt-e7eed096a0c33607a7a37baaf06e5952dc9d556b.tar.gz Qt-e7eed096a0c33607a7a37baaf06e5952dc9d556b.tar.bz2 |
Remove dependency of OpenGL Utility Library (GLU).
GLU is not part of standard OpenGL and is not used internally in Qt,
so we should not depend on it.
Task-number: QT-12227
Reviewed-by: kim
Diffstat (limited to 'src/opengl')
-rw-r--r-- | src/opengl/qgl.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/opengl/qgl.h b/src/opengl/qgl.h index 9315ac4..2ac4cb6 100644 --- a/src/opengl/qgl.h +++ b/src/opengl/qgl.h @@ -56,7 +56,6 @@ QT_BEGIN_HEADER #if defined(Q_WS_MAC) # include <OpenGL/gl.h> -# include <OpenGL/glu.h> #elif defined(QT_OPENGL_ES_1) # include <GLES/gl.h> #ifndef GL_DOUBLE @@ -75,9 +74,6 @@ typedef GLfloat GLdouble; #endif #else # include <GL/gl.h> -# ifndef QT_LINUXBASE -# include <GL/glu.h> -# endif #endif QT_BEGIN_NAMESPACE |