summaryrefslogtreecommitdiffstats
path: root/DOCS/client_api_examples/qml_direct/main.h
Commit message (Collapse)AuthorAgeFilesLines
* DOCS/client_api_examples: qml_direct: QWindow::size() is not thread-safewm42015-01-091-0/+1
| | | | | | We still keep the window pointer, because we want to call QQuickWindow::resetOpenGLState() (which runs on the rendering thread only). Interesting mess...
* DOCS/client_api_examples: add an alternative qml examplewm42015-01-081-0/+49
This one avoids use of a FBO. It's less flexible, because it uses works around the whole QML rendering API. It seems to be the only way to get OpenGL rendering without any indirections, though. Parts of this example were insipired by Qt's "Squircle" example. Also add a README file with a short description of each example, to reduce the initial confusing.