diff options
Diffstat (limited to 'recipes-qt/qt5/qtbase-git/0020-Use-BGRA-extension-in-bindTexture.patch')
-rw-r--r-- | recipes-qt/qt5/qtbase-git/0020-Use-BGRA-extension-in-bindTexture.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/recipes-qt/qt5/qtbase-git/0020-Use-BGRA-extension-in-bindTexture.patch b/recipes-qt/qt5/qtbase-git/0020-Use-BGRA-extension-in-bindTexture.patch deleted file mode 100644 index 5919bbad..00000000 --- a/recipes-qt/qt5/qtbase-git/0020-Use-BGRA-extension-in-bindTexture.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From 893bf856c5f61c75cd9a2c44dff911f31db261e1 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jani Hautakangas <jani.hautakangas@ixonos.com> | ||
3 | Date: Mon, 27 May 2013 15:25:25 -0700 | ||
4 | Subject: [PATCH 20/23] Use BGRA extension in bindTexture | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Change-Id: I18aecc87c5c7d4483cabe5555da33ca6bb8580f1 | ||
9 | |||
10 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
11 | --- | ||
12 | src/gui/opengl/qopengltexturecache.cpp | 6 +----- | ||
13 | 1 file changed, 1 insertion(+), 5 deletions(-) | ||
14 | |||
15 | diff --git a/src/gui/opengl/qopengltexturecache.cpp b/src/gui/opengl/qopengltexturecache.cpp | ||
16 | index 94b8288..5c8aa3c 100644 | ||
17 | --- a/src/gui/opengl/qopengltexturecache.cpp | ||
18 | +++ b/src/gui/opengl/qopengltexturecache.cpp | ||
19 | @@ -181,11 +181,7 @@ GLuint QOpenGLTextureCache::bindTexture(QOpenGLContext *context, qint64 key, con | ||
20 | |||
21 | QImage tx = image.convertToFormat(QImage::Format_ARGB32_Premultiplied); | ||
22 | |||
23 | - // Performance could be improved by skipping qgl_byteSwapImage(). | ||
24 | - if (m_useByteSwapImage) | ||
25 | - qgl_byteSwapImage(tx); | ||
26 | - | ||
27 | - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tx.width(), tx.height(), 0, GL_RGBA, GL_UNSIGNED_BYTE, const_cast<const QImage &>(tx).bits()); | ||
28 | + glTexImage2D(GL_TEXTURE_2D, 0, GL_BGRA_EXT, tx.width(), tx.height(), 0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, const_cast<const QImage &>(tx).bits()); | ||
29 | |||
30 | int cost = tx.width() * tx.height() * 4 / 1024; | ||
31 | m_cache.insert(key, new QOpenGLCachedTexture(id, context), cost); | ||
32 | -- | ||
33 | 1.8.3.2 | ||
34 | |||