summaryrefslogtreecommitdiffstats
path: root/src/platformsupport
diff options
context:
space:
mode:
authorRolland Dudemaine <rolland@ghs.com>2016-03-23 22:10:24 +0100
committerRolland Dudemaine <rolland@ghs.com>2016-03-29 13:57:33 +0000
commit0f60f6811f7cf6d51b6b5c1ebf5ee26c22e53670 (patch)
tree3b771e11d96c299cc622a7fd66dd29713ad31e94 /src/platformsupport
parentcd46a2daf57dea2e0b661d72f6eb2171079797ba (diff)
Disable fallback to dlsym() for INTEGRITY.
All symbols are available through eglGetProcAddress(). Change-Id: I636f9555f578dc5cf517995a4fcb01b0cd7f7698 Reviewed-by: Lars Knoll <lars.knoll@theqtcompany.com>
Diffstat (limited to 'src/platformsupport')
-rw-r--r--src/platformsupport/eglconvenience/qeglplatformcontext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/platformsupport/eglconvenience/qeglplatformcontext.cpp b/src/platformsupport/eglconvenience/qeglplatformcontext.cpp
index bd7254b73a..6a3bc25418 100644
--- a/src/platformsupport/eglconvenience/qeglplatformcontext.cpp
+++ b/src/platformsupport/eglconvenience/qeglplatformcontext.cpp
@@ -447,7 +447,7 @@ QFunctionPointer QEGLPlatformContext::getProcAddress(const char *procName)
{
eglBindAPI(m_api);
QFunctionPointer proc = (QFunctionPointer) eglGetProcAddress(procName);
-#ifndef Q_OS_WIN
+#if !defined(Q_OS_WIN) && !defined(Q_OS_INTEGRITY)
if (!proc)
proc = (QFunctionPointer) dlsym(RTLD_DEFAULT, procName);
#endif