From: Kim Motoyoshi Kalland Date: Tue, 17 Apr 2012 10:22:39 +0000 (+0200) Subject: Removed legacy pixmap and image cleanup hooks. X-Git-Tag: 071012110112~1546 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8aa0be210a417d3e3955a3add5d57efe2565d774;p=profile%2Fivi%2Fqtbase.git Removed legacy pixmap and image cleanup hooks. Task-number: QTBUG-25114 Change-Id: Id87172665ec15874e293e3891738e6366aef4554 Reviewed-by: Gunnar Sletta --- diff --git a/src/gui/image/qimagepixmapcleanuphooks.cpp b/src/gui/image/qimagepixmapcleanuphooks.cpp index 5b414b8..b118f5f 100644 --- a/src/gui/image/qimagepixmapcleanuphooks.cpp +++ b/src/gui/image/qimagepixmapcleanuphooks.cpp @@ -46,15 +46,6 @@ QT_BEGIN_NAMESPACE -// Legacy, single instance hooks: ### Qt 5: remove -typedef void (*_qt_pixmap_cleanup_hook)(int); -typedef void (*_qt_pixmap_cleanup_hook_64)(qint64); -typedef void (*_qt_image_cleanup_hook)(int); -Q_GUI_EXPORT _qt_pixmap_cleanup_hook qt_pixmap_cleanup_hook = 0; -Q_GUI_EXPORT _qt_pixmap_cleanup_hook_64 qt_pixmap_cleanup_hook_64 = 0; -Q_GUI_EXPORT _qt_image_cleanup_hook qt_image_cleanup_hook = 0; -Q_GUI_EXPORT _qt_image_cleanup_hook_64 qt_image_cleanup_hook_64 = 0; - Q_GLOBAL_STATIC(QImagePixmapCleanupHooks, qt_image_and_pixmap_cleanup_hooks) QImagePixmapCleanupHooks *QImagePixmapCleanupHooks::instance() @@ -103,9 +94,6 @@ void QImagePixmapCleanupHooks::executePlatformPixmapModificationHooks(QPlatformP return; for (int i = 0; i < h->pixmapModificationHooks.count(); ++i) h->pixmapModificationHooks[i](pmd); - - if (qt_pixmap_cleanup_hook_64) - qt_pixmap_cleanup_hook_64(pmd->cacheKey()); } void QImagePixmapCleanupHooks::executePlatformPixmapDestructionHooks(QPlatformPixmap* pmd) @@ -118,9 +106,6 @@ void QImagePixmapCleanupHooks::executePlatformPixmapDestructionHooks(QPlatformPi return; for (int i = 0; i < h->pixmapDestructionHooks.count(); ++i) h->pixmapDestructionHooks[i](pmd); - - if (qt_pixmap_cleanup_hook_64) - qt_pixmap_cleanup_hook_64(pmd->cacheKey()); } void QImagePixmapCleanupHooks::executeImageHooks(qint64 key) @@ -133,9 +118,6 @@ void QImagePixmapCleanupHooks::executeImageHooks(qint64 key) return; for (int i = 0; i < h->imageHooks.count(); ++i) h->imageHooks[i](key); - - if (qt_image_cleanup_hook_64) - qt_image_cleanup_hook_64(key); } diff --git a/src/opengl/qgl.cpp b/src/opengl/qgl.cpp index 6b0c637..893915f 100644 --- a/src/opengl/qgl.cpp +++ b/src/opengl/qgl.cpp @@ -1648,13 +1648,6 @@ int qt_next_power_of_two(int v) return v; } -typedef void (*_qt_pixmap_cleanup_hook_64)(qint64); -typedef void (*_qt_image_cleanup_hook_64)(qint64); - -extern Q_GUI_EXPORT _qt_pixmap_cleanup_hook_64 qt_pixmap_cleanup_hook_64; -extern Q_GUI_EXPORT _qt_image_cleanup_hook_64 qt_image_cleanup_hook_64; - - Q_GLOBAL_STATIC(QGLTextureCache, qt_gl_texture_cache) QGLTextureCache::QGLTextureCache()