summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@theqtcompany.com>2016-06-27 17:21:22 +0200
committerKai Koehne <kai.koehne@qt.io>2016-07-21 08:04:54 +0000
commit90492d45cf51896fac541bd4f14970c6501a6716 (patch)
tree787d440cc3c45e3596107a9126c759ca1c1f6c18 /src
parent0a3a32c62460a738ff0f1be1962749b8fc869465 (diff)
Doc: Move mentioning of QSG in overview to WebEngineWidgets module
Currently it was placed under WebEngineProcess, which is confusing. That the scene graph is used for the QtWebEngine module is probably not really interesting, but it's certainly suprising for Qt WebEngine Widgets, hence mention it there. Change-Id: I1a87b0b0d32cc2695c4dfa31aae56c517e39124e Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/webengine/doc/src/qtwebengine-overview.qdoc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/webengine/doc/src/qtwebengine-overview.qdoc b/src/webengine/doc/src/qtwebengine-overview.qdoc
index cd5bb1742..e87b5fd2d 100644
--- a/src/webengine/doc/src/qtwebengine-overview.qdoc
+++ b/src/webengine/doc/src/qtwebengine-overview.qdoc
@@ -66,6 +66,10 @@
\e cookies. Profiles can be used to isolate pages from each other. A typical use case is a
dedicated profile for a \e {private browsing} mode, where no information is permanently saved.
+ \note The Qt WebEngine Widgets module uses the \l{Qt Quick Scene Graph}{Qt Quick scene graph}
+ to compose the elements of a web page into one view. This means that the UI process
+ requires OpenGL ES 2.0 or OpenGL 2.0 for its rendering.
+
\section2 Qt WebEngine Module
\image qtwebengine-model.png
@@ -92,11 +96,6 @@
The Qt WebEngine Process renders web pages and executes JavaScript.
- Chromium is tightly integrated to the \l{Qt Quick Scene Graph}{Qt Quick scene graph}, which is
- based on OpenGL ES 2.0 or OpenGL 2.0 for its rendering. This provides you with one-pass
- compositing of web content and all the Qt Quick UI. The integration to Chromium is transparent
- to developers, who just work with Qt and JavaScript.
-
The document object model (DOM) of a page is constructed when the document is ready, typically
when the page is completely loaded. Therefore, executing scripts as soon as a document is
created is not suitable for DOM operations, where one has to wait until the DOM is ready.