summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2018-01-28 00:42:20 +0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2018-02-09 20:28:54 +0200
commit36a0c98713674206fa6cbe97be66a3945f7af03b (patch)
treebee4412ecf07c2e51fe4979ae478dd70a9959e78
parent6542e6ee37c98318f9eb6cced317d24b283e2f18 (diff)
downloadqtlocation-mapboxgl-36a0c98713674206fa6cbe97be66a3945f7af03b.tar.gz
[qt] Refresh the docs
-rw-r--r--platform/qt/src/qmapboxgl.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/platform/qt/src/qmapboxgl.cpp b/platform/qt/src/qmapboxgl.cpp
index c37e1bc9ba..fd12476a0f 100644
--- a/platform/qt/src/qmapboxgl.cpp
+++ b/platform/qt/src/qmapboxgl.cpp
@@ -1451,11 +1451,23 @@ void QMapboxGL::setFilter(const QString& layer, const QVariant& filter)
qWarning() << "Layer doesn't support filters";
}
+/*!
+ Creates the infrastructure needed for rendering the map. It
+ should be called before any call to render().
+
+ Must be called on the render thread.
+*/
void QMapboxGL::createRenderer()
{
d_ptr->createRenderer();
}
+/*!
+ Destroys the infrastructure needed for rendering the map,
+ releasing resources.
+
+ Must be called on the render thread.
+*/
void QMapboxGL::destroyRenderer()
{
d_ptr->destroyRenderer();
@@ -1469,6 +1481,8 @@ void QMapboxGL::destroyRenderer()
This function should be called only after the signal needsRendering() is
emitted at least once.
+
+ Must be called on the render thread.
*/
void QMapboxGL::render()
{
@@ -1479,6 +1493,8 @@ void QMapboxGL::render()
If Mapbox GL needs to rebind the default \a fbo, it will use the
ID supplied here. \a size is the size of the framebuffer, which
on high DPI screens is usually bigger than the map size.
+
+ Must be called on the render thread.
*/
void QMapboxGL::setFramebufferObject(quint32 fbo, const QSize& size)
{