summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-02-23 14:31:56 +0100
committerAllan Sandfeld Jensen <allan.jensen@theqtcompany.com>2015-02-25 16:18:44 +0000
commitefcc16a0a706303420d1f62881bdab15dc73d8d6 (patch)
tree3c8c41ffc84a98dd875b5cae73738303f714d001
parent41ef1965c5c0450230fbc0e35b817654d1713e25 (diff)
Remove PREMUL and INV_PREMUL macros
These macros have been deprecated since 5.3 and have always been private. Change-Id: I8c80b059a4c026c037f55279a3dfc0dca58c5d5c Reviewed-by: Gunnar Sletta <gunnar@sletta.org>
-rw-r--r--src/gui/painting/qdrawhelper_p.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gui/painting/qdrawhelper_p.h b/src/gui/painting/qdrawhelper_p.h
index a86d48cf7a..0abee94016 100644
--- a/src/gui/painting/qdrawhelper_p.h
+++ b/src/gui/painting/qdrawhelper_p.h
@@ -666,11 +666,6 @@ static Q_ALWAYS_INLINE uint qAlphaRgb30(uint c)
return a;
}
-
-// FIXME: Remove when all Qt modules have stopped using PREMUL and INV_PREMUL
-#define PREMUL(x) qPremultiply(x)
-#define INV_PREMUL(p) qUnpremultiply(p)
-
struct quint24 {
quint24(uint value);
operator uint() const;