3f591a
diff -up firefox-78.0/gfx/2d/DrawTargetSkia.cpp.mozilla-bmo1504834-part1 firefox-78.0/gfx/2d/DrawTargetSkia.cpp
3f591a
--- firefox-78.0/gfx/2d/DrawTargetSkia.cpp.mozilla-bmo1504834-part1	2020-06-17 04:18:58.000000000 +0200
3f591a
+++ firefox-78.0/gfx/2d/DrawTargetSkia.cpp	2020-06-25 16:52:29.824532769 +0200
3f591a
@@ -135,8 +135,7 @@ static IntRect CalculateSurfaceBounds(co
c59d34
   return surfaceBounds.Intersect(bounds);
c59d34
 }
c59d34
 
c59d34
-static const int kARGBAlphaOffset =
c59d34
-    SurfaceFormat::A8R8G8B8_UINT32 == SurfaceFormat::B8G8R8A8 ? 3 : 0;
c59d34
+static const int kARGBAlphaOffset = 0;  // Skia is always BGRA SurfaceFormat::A8R8G8B8_UINT32 == SurfaceFormat::B8G8R8A8 ? 3 : 0;
c59d34
 
c59d34
 static bool VerifyRGBXFormat(uint8_t* aData, const IntSize& aSize,
c59d34
                              const int32_t aStride, SurfaceFormat aFormat) {
3f591a
diff -up firefox-78.0/gfx/2d/Types.h.mozilla-bmo1504834-part1 firefox-78.0/gfx/2d/Types.h
3f591a
--- firefox-78.0/gfx/2d/Types.h.mozilla-bmo1504834-part1	2020-06-25 16:52:29.826532776 +0200
3f591a
+++ firefox-78.0/gfx/2d/Types.h	2020-06-25 16:55:02.942063616 +0200
3f591a
@@ -90,15 +90,8 @@ enum class SurfaceFormat : int8_t {
c59d34
 // The following values are endian-independent synonyms. The _UINT32 suffix
c59d34
 // indicates that the name reflects the layout when viewed as a uint32_t
c59d34
 // value.
3f591a
-#if MOZ_LITTLE_ENDIAN()
c59d34
   A8R8G8B8_UINT32 = B8G8R8A8,  // 0xAARRGGBB
3f591a
   X8R8G8B8_UINT32 = B8G8R8X8,  // 0x00RRGGBB
3f591a
-#elif MOZ_BIG_ENDIAN()
c59d34
-  A8R8G8B8_UINT32 = A8R8G8B8,  // 0xAARRGGBB
3f591a
-  X8R8G8B8_UINT32 = X8R8G8B8,  // 0x00RRGGBB
c59d34
-#else
c59d34
-#  error "bad endianness"
c59d34
-#endif
c59d34
 
3f591a
   // The following values are OS and endian-independent synonyms.
3f591a
   //
3f591a
diff -up firefox-78.0/gfx/skia/skia/third_party/skcms/skcms.cc.mozilla-bmo1504834-part1 firefox-78.0/gfx/skia/skia/third_party/skcms/skcms.cc
3f591a
--- firefox-78.0/gfx/skia/skia/third_party/skcms/skcms.cc.mozilla-bmo1504834-part1	2020-06-17 04:18:58.000000000 +0200
3f591a
+++ firefox-78.0/gfx/skia/skia/third_party/skcms/skcms.cc	2020-06-25 16:54:02.993855444 +0200
3f591a
@@ -30,6 +30,8 @@
3f591a
         #include <avx512fintrin.h>
3f591a
         #include <avx512dqintrin.h>
3f591a
     #endif
c59d34
+#else
c59d34
+    #define SKCMS_PORTABLE
c59d34
 #endif
c59d34
 
c59d34
 // sizeof(x) will return size_t, which is 32-bit on some machines and 64-bit on others.
3f591a
@@ -280,20 +282,28 @@ enum {
c59d34
 static uint16_t read_big_u16(const uint8_t* ptr) {
c59d34
     uint16_t be;
c59d34
     memcpy(&be, ptr, sizeof(be));
c59d34
-#if defined(_MSC_VER)
3f591a
-    return _byteswap_ushort(be);
c59d34
+#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
c59d34
+    return be;
3f591a
 #else
c59d34
+    #if defined(_MSC_VER)
3f591a
+    return _byteswap_ushort(be);
c59d34
+    #else
c59d34
     return __builtin_bswap16(be);
c59d34
+    #endif
c59d34
 #endif
c59d34
 }
c59d34
 
c59d34
 static uint32_t read_big_u32(const uint8_t* ptr) {
c59d34
     uint32_t be;
c59d34
     memcpy(&be, ptr, sizeof(be));
c59d34
-#if defined(_MSC_VER)
3f591a
-    return _byteswap_ulong(be);
c59d34
+#if __BYTE_ORDER == __ORDER_BIG_ENDIAN__
c59d34
+    return be;
3f591a
 #else
c59d34
+    #if defined(_MSC_VER)
3f591a
+    return _byteswap_ulong(be);
c59d34
+    #else
c59d34
     return __builtin_bswap32(be);
c59d34
+    #endif
c59d34
 #endif
c59d34
 }
c59d34