summaryrefslogtreecommitdiffstats
path: root/src/opengl
diff options
context:
space:
mode:
authorJason Barron <jason.barron@digia.com>2012-10-15 13:28:29 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-16 02:47:46 +0200
commitc967c9ec7fee7270496bb2ee7c945e0b1f62f2f8 (patch)
treec140378d1ab792cdf4a6c5925d99037438a963f9 /src/opengl
parent3e095fcbf5534d868e39265e4bf87d2a2c258530 (diff)
Ensure QOPENGLF_APIENTRY and QGLF_APIENTRY are set correctly.
gl2ext.h only defines GL_APIENTRY and not APIENTRY so we should use this macro if it is available. Without it, code that uses QOPENGLF_APIENTRY and QGLF_APIENTRY might experience compile errors due to the differing signatures. Task-number: QTBUG-27313 Change-Id: Id79d934825928d9913138edc6e8f1b00edc89a8d Reviewed-by: Sean Harmer <sean.harmer@kdab.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'src/opengl')
-rw-r--r--src/opengl/qglfunctions.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/opengl/qglfunctions.h b/src/opengl/qglfunctions.h
index 4318f538df..3d49b3ea3b 100644
--- a/src/opengl/qglfunctions.h
+++ b/src/opengl/qglfunctions.h
@@ -63,6 +63,8 @@ typedef ptrdiff_t qgl_GLsizeiptr;
#if defined(APIENTRY) && !defined(QGLF_APIENTRY)
# define QGLF_APIENTRY APIENTRY
+#elif defined(GL_APIENTRY) && !defined(QGLF_APIENTRY)
+# define QGLF_APIENTRY GL_APIENTRY
#endif
# ifndef QGLF_APIENTRYP