Change destruction order to avoid accessing deleted GL resources
authorKent Hansen <kent.hansen@nokia.com>
Wed, 16 Nov 2011 10:24:18 +0000 (11:24 +0100)
committerQt by Nokia <qt-info@nokia.com>
Wed, 16 Nov 2011 12:04:50 +0000 (13:04 +0100)
commitddf9883f8d00dcdfd908b38c60114a06ce8af185
tree779f5d775bbb0f54a7785b52e55d8255e696a8b1
parentcb26606bc2116f3cabd9cb5dde1d3ed7577a26a7
Change destruction order to avoid accessing deleted GL resources

This commit fixes a crash when a QQuickCanvas containing a
Text item is destroyed.

202127f860208c21145e05685bc54219e1655dbd in qtbase fixed a
resource leak with QOpenGLMultiGroupSharedResource; resources
were not cleaned up correctly when the associated GL context
(group) was destroyed.

This exposed a bug where QSGDefaultDistanceFieldGlyphCache
(used for Text items) relied on that leakage. In particular,
the glyph cache stores a pointer to a GL resource that it
doesn't own (m_textureData).

If the GL context is deleted and there are no other contexts
in the group, the group and its resources will be deleted.
Subsequently, if the glyph cache accesses the resource pointer
when the Text node is destroyed (via
QSGDefaultDistanceFieldGlyphCache::releaseGlyphs()), we crash.

The GL context is deleted when QQuickCanvasPlainRenderLoop is
destroyed. By moving the deletion of the render loop object to
the end of QQuickCanvas destructor, the canvas nodes get a
chance to clean up the resources they use _before_ the
resources are deleted.

Task-number: QTBUG-22754
Change-Id: Ie8de19a139b4631a16203e63e731feed3d8d64cf
Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
src/declarative/items/qquickcanvas.cpp