d25f7ca79a
* startup notifications now using Gtk instead of libnotify * PDF downloads now show an option to open the PDF directly in Firefox - requires * NSS >= 3.53.1 * nodejs >= 10.21 * Gtk+3 >= 3.14 - removed obsolete patch * mozilla-s390-bigendian.patch - Add mozilla-pipewire-0-3.patch for openSUSE >= 15.2 to build WebRTC with pipewire support to enable screen sharing under Wayland; also add BuildRequires: pkgconfig(libpipewire-0.3) appropriately (boo#1172903). - adding SLE12 compatibility in spec file - add patches for s390x * mozilla-bmo1602730.patch (bmo#1602730) * mozilla-bmo1626236.patch (bmo#1626236) * mozilla-bmo998749.patch (bmo#998749) * mozilla-s390x-skia-gradient.patch - update create-tar.sh - Use same _constraints for ppc64 (BE) as ppc64le to avoid oom build failure OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=834
52 lines
1.3 KiB
Diff
52 lines
1.3 KiB
Diff
# HG changeset patch
|
|
# Parent acf59ea86dd1d878b43920832093f082dcfc61c0
|
|
|
|
diff -r acf59ea86dd1 gfx/skia/skia/src/shaders/gradients/Sk4fLinearGradient.cpp
|
|
--- a/gfx/skia/skia/src/shaders/gradients/Sk4fLinearGradient.cpp Mon Mar 09 08:26:10 2020 +0100
|
|
+++ b/gfx/skia/skia/src/shaders/gradients/Sk4fLinearGradient.cpp Fri Mar 27 13:30:28 2020 +0100
|
|
@@ -7,7 +7,7 @@
|
|
|
|
#include "include/core/SkPaint.h"
|
|
#include "src/shaders/gradients/Sk4fLinearGradient.h"
|
|
-
|
|
+#include "src/core/SkEndian.h"
|
|
#include <cmath>
|
|
#include <utility>
|
|
|
|
@@ -28,6 +28,9 @@
|
|
|
|
while (n >= 4) {
|
|
DstTraits<premul>::store4x(c0, c1, c2, c3, dst, bias0, bias1);
|
|
+#ifdef SK_CPU_BENDIAN
|
|
+ SkEndianSwap32s(dst, 4);
|
|
+#endif
|
|
dst += 4;
|
|
|
|
c0 = c0 + dc4;
|
|
@@ -37,12 +40,23 @@
|
|
n -= 4;
|
|
}
|
|
if (n & 2) {
|
|
- DstTraits<premul>::store(c0, dst++, bias0);
|
|
- DstTraits<premul>::store(c1, dst++, bias1);
|
|
+ DstTraits<premul>::store(c0, dst, bias0);
|
|
+#ifdef SK_CPU_BENDIAN
|
|
+ *dst = SkEndianSwap32(*dst);
|
|
+#endif
|
|
+ ++dst;
|
|
+ DstTraits<premul>::store(c1, dst, bias1);
|
|
+#ifdef SK_CPU_BENDIAN
|
|
+ *dst = SkEndianSwap32(*dst);
|
|
+#endif
|
|
+ ++dst;
|
|
c0 = c0 + dc2;
|
|
}
|
|
if (n & 1) {
|
|
DstTraits<premul>::store(c0, dst, bias0);
|
|
+#ifdef SK_CPU_BENDIAN
|
|
+ *dst = SkEndianSwap32(*dst);
|
|
+#endif
|
|
}
|
|
}
|
|
|