summaryrefslogtreecommitdiff
path: root/config.profiles/harmattan/patches/qgltexturecache.diff
diff options
context:
space:
mode:
Diffstat (limited to 'config.profiles/harmattan/patches/qgltexturecache.diff')
-rw-r--r--config.profiles/harmattan/patches/qgltexturecache.diff23
1 files changed, 0 insertions, 23 deletions
diff --git a/config.profiles/harmattan/patches/qgltexturecache.diff b/config.profiles/harmattan/patches/qgltexturecache.diff
deleted file mode 100644
index 0fa8ad24a7..0000000000
--- a/config.profiles/harmattan/patches/qgltexturecache.diff
+++ /dev/null
@@ -1,23 +0,0 @@
-Index: qt-maemo-qtp/src/opengl/qgl.cpp
-===================================================================
---- qt-maemo-qtp.orig/src/opengl/qgl.cpp
-+++ qt-maemo-qtp/src/opengl/qgl.cpp
-@@ -1831,18 +1831,6 @@
- void QGLTextureCache::insert(QGLContext* ctx, qint64 key, QGLTexture* texture, int cost)
- {
- QWriteLocker locker(&m_lock);
-- if (m_cache.totalCost() + cost > m_cache.maxCost()) {
-- // the cache is full - make an attempt to remove something
-- const QList<QGLTextureCacheKey> keys = m_cache.keys();
-- int i = 0;
-- while (i < m_cache.count()
-- && (m_cache.totalCost() + cost > m_cache.maxCost())) {
-- QGLTexture *tex = m_cache.object(keys.at(i));
-- if (tex->context == ctx)
-- m_cache.remove(keys.at(i));
-- ++i;
-- }
-- }
- const QGLTextureCacheKey cacheKey = {key, QGLContextPrivate::contextGroup(ctx)};
- m_cache.insert(cacheKey, texture, cost);
- }