summaryrefslogtreecommitdiffstats
path: root/src/gui/painting
diff options
context:
space:
mode:
authorQt Forward Merge Bot <qt_forward_merge_bot@qt-project.org>2020-04-21 01:00:10 +0200
committerEdward Welbourne <edward.welbourne@qt.io>2020-04-22 15:28:01 +0200
commitefd7757154e1fb946a51c7d90b8cbf56b4df8b6d (patch)
treef757e14770d82ee8376fa10006973c0e750b1e16 /src/gui/painting
parent1c80d056e4f45b4ee7c4863cd792e83c889513c5 (diff)
parente10e5318bc02a48a866b76b6f0b7f268d16af642 (diff)
Merge remote-tracking branch 'origin/5.15' into dev
Conflicts: src/widgets/widgets/qabstractbutton.cpp src/widgets/widgets/qbuttongroup.cpp src/widgets/widgets/qbuttongroup.h src/widgets/widgets/qsplashscreen.cpp tests/auto/widgets/widgets/qbuttongroup/tst_qbuttongroup.cpp tests/benchmarks/opengl/main.cpp Needed update: src/plugins/platforms/cocoa/CMakeLists.txt Change-Id: I7be4baebb63844ec2b3e0de859ca9de1bc730bb5
Diffstat (limited to 'src/gui/painting')
-rw-r--r--src/gui/painting/qimagescale.cpp246
-rw-r--r--src/gui/painting/qimagescale_neon.cpp86
-rw-r--r--src/gui/painting/qimagescale_sse4.cpp86
3 files changed, 92 insertions, 326 deletions
diff --git a/src/gui/painting/qimagescale.cpp b/src/gui/painting/qimagescale.cpp
index ecb0230e71..2395c891ce 100644
--- a/src/gui/painting/qimagescale.cpp
+++ b/src/gui/painting/qimagescale.cpp
@@ -43,7 +43,7 @@
#include "qcolor.h"
#include "qrgba64_p.h"
-#if QT_CONFIG(thread)
+#if QT_CONFIG(thread) && !defined(Q_OS_WASM)
#include "qsemaphore.h"
#include "qthreadpool.h"
#endif
@@ -301,6 +301,30 @@ void qt_qimageScaleAARGBA_down_xy_neon(QImageScaleInfo *isi, unsigned int *dest,
int dw, int dh, int dow, int sow);
#endif
+template<typename T>
+static inline void multithread_pixels_function(QImageScaleInfo *isi, int dh, const T &scaleSection)
+{
+#if QT_CONFIG(thread) && !defined(Q_OS_WASM)
+ int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
+ segments = std::min(segments, dh);
+ if (segments > 1) {
+ QSemaphore semaphore;
+ int y = 0;
+ for (int i = 0; i < segments; ++i) {
+ int yn = (dh - y) / (segments - i);
+ QThreadPool::globalInstance()->start([&, y, yn]() {
+ scaleSection(y, y + yn);
+ semaphore.release(1);
+ });
+ y += yn;
+ }
+ semaphore.acquire(segments);
+ return;
+ }
+#endif
+ scaleSection(0, dh);
+}
+
static void qt_qimageScaleAARGBA_up_xy(QImageScaleInfo *isi, unsigned int *dest,
int dw, int dh, int dow, int sow)
{
@@ -339,25 +363,7 @@ static void qt_qimageScaleAARGBA_up_xy(QImageScaleInfo *isi, unsigned int *dest,
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
/* scale by area sampling - with alpha */
@@ -468,25 +474,7 @@ static void qt_qimageScaleAARGBA_up_x_down_y(QImageScaleInfo *isi, unsigned int
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
static void qt_qimageScaleAARGBA_down_x_up_y(QImageScaleInfo *isi, unsigned int *dest,
@@ -528,25 +516,7 @@ static void qt_qimageScaleAARGBA_down_x_up_y(QImageScaleInfo *isi, unsigned int
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
static void qt_qimageScaleAARGBA_down_xy(QImageScaleInfo *isi, unsigned int *dest,
@@ -598,25 +568,7 @@ static void qt_qimageScaleAARGBA_down_xy(QImageScaleInfo *isi, unsigned int *des
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
#if QT_CONFIG(raster_64bit)
@@ -665,25 +617,7 @@ static void qt_qimageScaleRgba64_up_xy(QImageScaleInfo *isi, QRgba64 *dest,
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
void qt_qimageScaleRgba64(QImageScaleInfo *isi, QRgba64 *dest,
@@ -757,25 +691,7 @@ static void qt_qimageScaleRgba64_up_x_down_y(QImageScaleInfo *isi, QRgba64 *dest
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
static void qt_qimageScaleRgba64_down_x_up_y(QImageScaleInfo *isi, QRgba64 *dest,
@@ -816,25 +732,7 @@ static void qt_qimageScaleRgba64_down_x_up_y(QImageScaleInfo *isi, QRgba64 *dest
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
static void qt_qimageScaleRgba64_down_xy(QImageScaleInfo *isi, QRgba64 *dest,
@@ -884,25 +782,7 @@ static void qt_qimageScaleRgba64_down_xy(QImageScaleInfo *isi, QRgba64 *dest,
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
#endif
@@ -1019,25 +899,7 @@ static void qt_qimageScaleAARGB_up_x_down_y(QImageScaleInfo *isi, unsigned int *
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
static void qt_qimageScaleAARGB_down_x_up_y(QImageScaleInfo *isi, unsigned int *dest,
@@ -1076,25 +938,7 @@ static void qt_qimageScaleAARGB_down_x_up_y(QImageScaleInfo *isi, unsigned int *
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
static void qt_qimageScaleAARGB_down_xy(QImageScaleInfo *isi, unsigned int *dest,
@@ -1144,25 +988,7 @@ static void qt_qimageScaleAARGB_down_xy(QImageScaleInfo *isi, unsigned int *dest
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
QImage qSmoothScaleImage(const QImage &src, int dw, int dh)
diff --git a/src/gui/painting/qimagescale_neon.cpp b/src/gui/painting/qimagescale_neon.cpp
index 416155e139..65fe3fac3c 100644
--- a/src/gui/painting/qimagescale_neon.cpp
+++ b/src/gui/painting/qimagescale_neon.cpp
@@ -41,7 +41,7 @@
#include "qimage.h"
#include <private/qsimd_p.h>
-#if QT_CONFIG(thread)
+#if QT_CONFIG(thread) && !defined(Q_OS_WASM)
#include "qsemaphore.h"
#include "qthreadpool.h"
#endif
@@ -52,6 +52,30 @@ QT_BEGIN_NAMESPACE
using namespace QImageScale;
+template<typename T>
+static inline void multithread_pixels_function(QImageScaleInfo *isi, int dh, const T &scaleSection)
+{
+#if QT_CONFIG(thread) && !defined(Q_OS_WASM)
+ int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
+ segments = std::min(segments, dh);
+ if (segments > 1) {
+ QSemaphore semaphore;
+ int y = 0;
+ for (int i = 0; i < segments; ++i) {
+ int yn = (dh - y) / (segments - i);
+ QThreadPool::globalInstance()->start([&, y, yn]() {
+ scaleSection(y, y + yn);
+ semaphore.release(1);
+ });
+ y += yn;
+ }
+ semaphore.acquire(segments);
+ return;
+ }
+#endif
+ scaleSection(0, dh);
+}
+
inline static uint32x4_t qt_qimageScaleAARGBA_helper(const unsigned int *pix, int xyap, int Cxy, int step)
{
uint32x2_t vpix32 = vmov_n_u32(*pix);
@@ -110,25 +134,7 @@ void qt_qimageScaleAARGBA_up_x_down_y_neon(QImageScaleInfo *isi, unsigned int *d
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
template<bool RGB>
@@ -170,25 +176,7 @@ void qt_qimageScaleAARGBA_down_x_up_y_neon(QImageScaleInfo *isi, unsigned int *d
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
template<bool RGB>
@@ -239,25 +227,7 @@ void qt_qimageScaleAARGBA_down_xy_neon(QImageScaleInfo *isi, unsigned int *dest,
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
template void qt_qimageScaleAARGBA_up_x_down_y_neon<false>(QImageScaleInfo *isi, unsigned int *dest,
diff --git a/src/gui/painting/qimagescale_sse4.cpp b/src/gui/painting/qimagescale_sse4.cpp
index 902ae61ed2..1760e72f65 100644
--- a/src/gui/painting/qimagescale_sse4.cpp
+++ b/src/gui/painting/qimagescale_sse4.cpp
@@ -42,7 +42,7 @@
#include <private/qdrawhelper_x86_p.h>
#include <private/qsimd_p.h>
-#if QT_CONFIG(thread)
+#if QT_CONFIG(thread) && !defined(Q_OS_WASM)
#include "qsemaphore.h"
#include "qthreadpool.h"
#endif
@@ -53,6 +53,30 @@ QT_BEGIN_NAMESPACE
using namespace QImageScale;
+template<typename T>
+static inline void multithread_pixels_function(QImageScaleInfo *isi, int dh, const T &scaleSection)
+{
+#if QT_CONFIG(thread) && !defined(Q_OS_WASM)
+ int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
+ segments = std::min(segments, dh);
+ if (segments > 1) {
+ QSemaphore semaphore;
+ int y = 0;
+ for (int i = 0; i < segments; ++i) {
+ int yn = (dh - y) / (segments - i);
+ QThreadPool::globalInstance()->start([&, y, yn]() {
+ scaleSection(y, y + yn);
+ semaphore.release(1);
+ });
+ y += yn;
+ }
+ semaphore.acquire(segments);
+ return;
+ }
+#endif
+ scaleSection(0, dh);
+}
+
inline static __m128i Q_DECL_VECTORCALL
qt_qimageScaleAARGBA_helper(const unsigned int *pix, int xyap, int Cxy, int step, const __m128i vxyap, const __m128i vCxy)
{
@@ -115,25 +139,7 @@ void qt_qimageScaleAARGBA_up_x_down_y_sse4(QImageScaleInfo *isi, unsigned int *d
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
template<bool RGB>
@@ -181,25 +187,7 @@ void qt_qimageScaleAARGBA_down_x_up_y_sse4(QImageScaleInfo *isi, unsigned int *d
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
template<bool RGB>
@@ -249,25 +237,7 @@ void qt_qimageScaleAARGBA_down_xy_sse4(QImageScaleInfo *isi, unsigned int *dest,
}
}
};
-#if QT_CONFIG(thread)
- int segments = (qsizetype(isi->sh) * isi->sw) / (1<<16);
- segments = std::min(segments, dh);
- if (segments > 1) {
- QSemaphore semaphore;
- int y = 0;
- for (int i = 0; i < segments; ++i) {
- int yn = (dh - y) / (segments - i);
- QThreadPool::globalInstance()->start([&, y, yn]() {
- scaleSection(y, y + yn);
- semaphore.release(1);
- });
- y += yn;
- }
- semaphore.acquire(segments);
- return;
- }
-#endif
- scaleSection(0, dh);
+ multithread_pixels_function(isi, dh, scaleSection);
}
template void qt_qimageScaleAARGBA_up_x_down_y_sse4<false>(QImageScaleInfo *isi, unsigned int *dest,