diff options
author | Water-Team <water@pad.test.qt.nokia.com> | 2011-10-27 23:00:13 (GMT) |
---|---|---|
committer | Water-Team <water@pad.test.qt.nokia.com> | 2011-10-27 23:00:13 (GMT) |
commit | a1e3906c5d4b4c25356b56292b650a20e4895f41 (patch) | |
tree | b537a8e1a2e42da68728d18b8e7c9599b95ac651 /src | |
parent | 287c150aac9e4892801b6117fb6fa11a616b05a1 (diff) | |
parent | fadd87f448d3dd4133d1a6ec022ee6db42eb9723 (diff) | |
download | Qt-a1e3906c5d4b4c25356b56292b650a20e4895f41.zip Qt-a1e3906c5d4b4c25356b56292b650a20e4895f41.tar.gz Qt-a1e3906c5d4b4c25356b56292b650a20e4895f41.tar.bz2 |
Merge branch '4.8-upstream' into master-water
Diffstat (limited to 'src')
-rw-r--r-- | src/opengl/gl2paintengineex/qtextureglyphcache_gl_p.h | 4 | ||||
-rw-r--r-- | src/opengl/qgl.cpp | 11 | ||||
-rw-r--r-- | src/opengl/qgl_p.h | 1 |
3 files changed, 15 insertions, 1 deletions
diff --git a/src/opengl/gl2paintengineex/qtextureglyphcache_gl_p.h b/src/opengl/gl2paintengineex/qtextureglyphcache_gl_p.h index 83ca06d..1a8bb0b 100644 --- a/src/opengl/gl2paintengineex/qtextureglyphcache_gl_p.h +++ b/src/opengl/gl2paintengineex/qtextureglyphcache_gl_p.h @@ -144,6 +144,10 @@ public: void clear(); + void contextDeleted(const QGLContext *context) { + if (ctx == context) + ctx = 0; + } void freeResource(void *) { ctx = 0; } private: diff --git a/src/opengl/qgl.cpp b/src/opengl/qgl.cpp index 6d95713..08b9ca3 100644 --- a/src/opengl/qgl.cpp +++ b/src/opengl/qgl.cpp @@ -5726,6 +5726,11 @@ void QGLContextGroupResourceBase::cleanup(const QGLContext *ctx) } } +void QGLContextGroupResourceBase::contextDeleted(const QGLContext *ctx) +{ + Q_UNUSED(ctx); +} + void QGLContextGroupResourceBase::cleanup(const QGLContext *ctx, void *value) { #ifdef QT_GL_CONTEXT_RESOURCE_DEBUG @@ -5741,12 +5746,16 @@ void QGLContextGroupResourceBase::cleanup(const QGLContext *ctx, void *value) void QGLContextGroup::cleanupResources(const QGLContext *context) { + // Notify all resources that a context has been deleted + QHash<QGLContextGroupResourceBase *, void *>::ConstIterator it; + for (it = m_resources.begin(); it != m_resources.end(); ++it) + it.key()->contextDeleted(context); + // If there are still shares, then no cleanup to be done yet. if (m_shares.size() > 1) return; // Iterate over all resources and free each in turn. - QHash<QGLContextGroupResourceBase *, void *>::ConstIterator it; for (it = m_resources.begin(); it != m_resources.end(); ++it) it.key()->cleanup(context, it.value()); } diff --git a/src/opengl/qgl_p.h b/src/opengl/qgl_p.h index 945bbaf..df09dfd 100644 --- a/src/opengl/qgl_p.h +++ b/src/opengl/qgl_p.h @@ -728,6 +728,7 @@ public: void cleanup(const QGLContext *context); void cleanup(const QGLContext *context, void *value); virtual void freeResource(void *value) = 0; + virtual void contextDeleted(const QGLContext *ctx); protected: QList<QGLContextGroup *> m_groups; |