summaryrefslogtreecommitdiffstats
path: root/src/core/content_browser_client_qt.cpp
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2014-02-04 17:12:25 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-05 15:51:30 +0100
commit5a304a9adb834afc946c949cf8538a4f8b5d7cdd (patch)
treed97b5d3e34d926c9d05c57d310dd41e3dfd4a754 /src/core/content_browser_client_qt.cpp
parentecaab295f96e3d12fc952c49d35a6eb32f72aba1 (diff)
Fix the embedded build
Adopt to toolchain changes and fix the build with the current snapshot. This patch adds some missing overrides and build system configurations. Change-Id: I488929500347bdb5a077ac14e9553cedfcaa605d Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'src/core/content_browser_client_qt.cpp')
-rw-r--r--src/core/content_browser_client_qt.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/content_browser_client_qt.cpp b/src/core/content_browser_client_qt.cpp
index 24b478268..8adad10f0 100644
--- a/src/core/content_browser_client_qt.cpp
+++ b/src/core/content_browser_client_qt.cpp
@@ -213,9 +213,13 @@ public:
m_handle = pni->nativeResourceForContext(QByteArrayLiteral("cglcontextobj"), qtContext);
else if (platform == QStringLiteral("qnx"))
m_handle = pni->nativeResourceForContext(QByteArrayLiteral("eglcontext"), qtContext);
- else
+ else if (platform == QStringLiteral("eglfs"))
+ m_handle = pni->nativeResourceForContext(QByteArrayLiteral("eglcontext"), qtContext);
+ else {
+ qFatal("%s platform not yet supported", platform.toLatin1().constData());
// Add missing platforms once they work.
Q_UNREACHABLE();
+ }
}
virtual void* GetHandle() Q_DECL_OVERRIDE { return m_handle; }