summaryrefslogtreecommitdiffstats
path: root/src/gui/opengl/qopenglfunctions_es2.h
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2013-03-02 22:23:30 -0800
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-05 02:43:00 +0100
commit6f8bc4de406be856eeba9e62700888941ccfdcc1 (patch)
treebffe36daadc43f4b8fa76e70add2ad7b93973bea /src/gui/opengl/qopenglfunctions_es2.h
parent5107cacaeed4b07ca46742206db0f871e284d0ae (diff)
Make the new OpenGL function headers compile on their own
You can't use #ifndef QT_NO_OPENGL before including whatever is supposed to define that. That's qconfig.h, included by qglobal.h. Also, make sure that the desktop OpenGL code isn't activated when compiling in OpenGL ES 2 mode -- QOpenGLFunctions_1_0_CoreBackend and other classes aren't defined. Change-Id: I127edf56d42257580579789d0566b7e11c21133b Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/gui/opengl/qopenglfunctions_es2.h')
-rw-r--r--src/gui/opengl/qopenglfunctions_es2.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/opengl/qopenglfunctions_es2.h b/src/gui/opengl/qopenglfunctions_es2.h
index c040f2cf82..9c14567723 100644
--- a/src/gui/opengl/qopenglfunctions_es2.h
+++ b/src/gui/opengl/qopenglfunctions_es2.h
@@ -42,7 +42,9 @@
#ifndef QOPENGLVERSIONFUNCTIONS_ES2_H
#define QOPENGLVERSIONFUNCTIONS_ES2_H
-#ifndef QT_NO_OPENGL
+#include <QtCore/qglobal.h>
+
+#if defined(QT_OPENGL_ES_2)
#include <QtGui/QOpenGLVersionFunctions>
#include <QtGui/qopenglcontext.h>
@@ -926,6 +928,6 @@ inline void QOpenGLFunctions_ES2::glViewport(GLint x, GLint y, GLsizei width, GL
QT_END_NAMESPACE
-#endif // QT_NO_OPENGL
+#endif // QT_OPENGL_ES_2
#endif