Commit c92a8994 authored by Arvid Nilsson's avatar Arvid Nilsson Committed by The Qt Project
Browse files

Delegated renderer: Share context support for QNX


Add code to extract the EGL context on QNX for use as the share context
in the Chromium GPU process/thread. Very similar to the other
platforms.

Change-Id: I54fba69283e984a392c11922da2483ce921ea594
Reviewed-by: default avatarJocelyn Turcotte <jocelyn.turcotte@digia.com>
Showing with 2 additions and 0 deletions
......@@ -222,6 +222,8 @@ public:
m_handle = pni->nativeResourceForContext(QByteArrayLiteral("glxcontext"), qtContext);
} else if (platform == QStringLiteral("Cocoa"))
m_handle = pni->nativeResourceForContext(QByteArrayLiteral("cglcontextobj"), qtContext);
else if (platform == QStringLiteral("qnx"))
m_handle = pni->nativeResourceForContext(QByteArrayLiteral("eglcontext"), qtContext);
else
// Add missing platforms once they work.
Q_UNREACHABLE();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment