6e1282
# HG changeset patch
6e1282
# Parent  aecb4600e5da17443b224c79eee178c1d8e155e3
6e1282
For FF68, AntiAliasing of XULTexts seem to be broken on big endian (s390x). Text and icons of the sandwich-menu to the
6e1282
right of the address bar, as well as plugin-windows appears transparant, which usually means unreadable (white on white).
6e1282
6e1282
diff -r aecb4600e5da gfx/skia/skia/include/private/SkNx.h
6e1282
--- a/gfx/skia/skia/include/private/SkNx.h	Tue Aug 20 09:46:55 2019 +0200
6e1282
+++ b/gfx/skia/skia/include/private/SkNx.h	Mon Sep 09 10:04:06 2019 +0200
6e1282
@@ -238,7 +238,18 @@
6e1282
     AI SkNx operator*(const SkNx& y) const { return fVal * y.fVal; }
6e1282
     AI SkNx operator/(const SkNx& y) const { return fVal / y.fVal; }
6e1282
 
6e1282
+    // On Big endian the commented out variant doesn't work,
6e1282
+    // and honestly, I have no idea why it exists in the first place.
6e1282
+    // The reason its broken is, I think, that it defaults to the double-variant of ToBits()
6e1282
+    // which gets a 64-bit integer, and FromBits returns 32-bit,
6e1282
+    // cutting off the wrong half again.
6e1282
+    // Overall, I see no reason to have ToBits and FromBits at all (even for floats/doubles).
6e1282
+    // Still we are only "fixing" this for big endian and leave little endian alone (never touch a running system)
6e1282
+#ifdef SK_CPU_BENDIAN
6e1282
+    AI SkNx operator&(const SkNx& y) const { return fVal & y.fVal; }
6e1282
+#else
6e1282
     AI SkNx operator&(const SkNx& y) const { return FromBits(ToBits(fVal) & ToBits(y.fVal)); }
6e1282
+#endif
6e1282
     AI SkNx operator|(const SkNx& y) const { return FromBits(ToBits(fVal) | ToBits(y.fVal)); }
6e1282
     AI SkNx operator^(const SkNx& y) const { return FromBits(ToBits(fVal) ^ ToBits(y.fVal)); }
6e1282
 
6e1282
diff -r aecb4600e5da gfx/skia/skia/src/opts/SkBlitMask_opts.h
6e1282
--- a/gfx/skia/skia/src/opts/SkBlitMask_opts.h	Tue Aug 20 09:46:55 2019 +0200
6e1282
+++ b/gfx/skia/skia/src/opts/SkBlitMask_opts.h	Mon Sep 09 10:04:06 2019 +0200
6e1282
@@ -203,7 +203,13 @@
6e1282
             //   ~~~>
6e1282
             // a = 1*aa + d(1-1*aa) = aa + d(1-aa)
6e1282
             // c = 0*aa + d(1-1*aa) =      d(1-aa)
6e1282
+
6e1282
+            // For big endian we have to swap the alpha-mask from 0,0,0,255 to 255,0,0,0
6e1282
+#ifdef SK_CPU_BENDIAN
6e1282
+            return Sk4px(Sk16b(aa) & Sk16b(255,0,0,0, 255,0,0,0, 255,0,0,0, 255,0,0,0))
6e1282
+#else
6e1282
             return Sk4px(Sk16b(aa) & Sk16b(0,0,0,255, 0,0,0,255, 0,0,0,255, 0,0,0,255))
6e1282
+#endif
6e1282
                  + d.approxMulDiv255(aa.inv());
6e1282
         };
6e1282
         while (h --> 0) {