969f7f
diff -up firefox-60.0/gfx/skia/skia/include/core/SkColorPriv.h.big-endian firefox-60.0/gfx/skia/skia/include/core/SkColorPriv.h
969f7f
--- firefox-60.0/gfx/skia/skia/include/core/SkColorPriv.h.big-endian	2018-04-09 22:50:48.000000000 +0200
969f7f
+++ firefox-60.0/gfx/skia/skia/include/core/SkColorPriv.h	2018-04-18 11:51:38.748680174 +0200
969f7f
@@ -54,18 +54,19 @@ static inline U8CPU SkUnitScalarClampToB
969f7f
  *
969f7f
  *  Here we enforce this constraint.
969f7f
  */
969f7f
-
969f7f
+/*
969f7f
 #ifdef SK_CPU_BENDIAN
969f7f
     #define SK_RGBA_R32_SHIFT   24
969f7f
     #define SK_RGBA_G32_SHIFT   16
969f7f
     #define SK_RGBA_B32_SHIFT   8
969f7f
     #define SK_RGBA_A32_SHIFT   0
969f7f
 #else
969f7f
+*/
969f7f
     #define SK_RGBA_R32_SHIFT   0
969f7f
     #define SK_RGBA_G32_SHIFT   8
969f7f
     #define SK_RGBA_B32_SHIFT   16
969f7f
     #define SK_RGBA_A32_SHIFT   24
969f7f
-#endif
969f7f
+/*#endif*/
969f7f
 
969f7f
 #define SkGetPackedA32(packed)      ((uint32_t)((packed) << (24 - SK_A32_SHIFT)) >> 24)
969f7f
 #define SkGetPackedR32(packed)      ((uint32_t)((packed) << (24 - SK_R32_SHIFT)) >> 24)
969f7f
diff -up firefox-60.0/gfx/skia/skia/include/core/SkImageInfo.h.big-endian firefox-60.0/gfx/skia/skia/include/core/SkImageInfo.h
969f7f
--- firefox-60.0/gfx/skia/skia/include/core/SkImageInfo.h.big-endian	2018-04-09 22:50:48.000000000 +0200
969f7f
+++ firefox-60.0/gfx/skia/skia/include/core/SkImageInfo.h	2018-04-18 11:51:38.748680174 +0200
969f7f
@@ -84,7 +84,8 @@ enum SkColorType {
969f7f
 #elif SK_PMCOLOR_BYTE_ORDER(R,G,B,A)
969f7f
     kN32_SkColorType = kRGBA_8888_SkColorType,
969f7f
 #else
969f7f
-    #error "SK_*32_SHIFT values must correspond to BGRA or RGBA byte order"
969f7f
+    //#error "SK_*32_SHIFT values must correspond to BGRA or RGBA byte order"
969f7f
+    kN32_SkColorType = kBGRA_8888_SkColorType
969f7f
 #endif
969f7f
 };
969f7f
 
969f7f
diff -up firefox-60.0/gfx/skia/skia/include/gpu/GrTypes.h.big-endian firefox-60.0/gfx/skia/skia/include/gpu/GrTypes.h
969f7f
--- firefox-60.0/gfx/skia/skia/include/gpu/GrTypes.h.big-endian	2018-04-09 22:50:48.000000000 +0200
969f7f
+++ firefox-60.0/gfx/skia/skia/include/gpu/GrTypes.h	2018-04-18 11:51:38.748680174 +0200
969f7f
@@ -344,15 +344,13 @@ enum GrPixelConfig {
969f7f
 static const int kGrPixelConfigCnt = kLast_GrPixelConfig + 1;
969f7f
 
969f7f
 // Aliases for pixel configs that match skia's byte order.
969f7f
-#ifndef SK_CPU_LENDIAN
969f7f
-    #error "Skia gpu currently assumes little endian"
969f7f
-#endif
969f7f
 #if SK_PMCOLOR_BYTE_ORDER(B,G,R,A)
969f7f
     static const GrPixelConfig kSkia8888_GrPixelConfig = kBGRA_8888_GrPixelConfig;
969f7f
 #elif SK_PMCOLOR_BYTE_ORDER(R,G,B,A)
969f7f
     static const GrPixelConfig kSkia8888_GrPixelConfig = kRGBA_8888_GrPixelConfig;
969f7f
 #else
969f7f
-    #error "SK_*32_SHIFT values must correspond to GL_BGRA or GL_RGBA format."
969f7f
+    static const GrPixelConfig kSkia8888_GrPixelConfig = kBGRA_8888_GrPixelConfig;
969f7f
+    static const GrPixelConfig kSkiaGamma8888_GrPixelConfig = kSBGRA_8888_GrPixelConfig;
969f7f
 #endif
969f7f
 
969f7f
 /**
969f7f
diff -up firefox-60.0/gfx/skia/skia/src/core/SkColorData.h.big-endian firefox-60.0/gfx/skia/skia/src/core/SkColorData.h
969f7f
--- firefox-60.0/gfx/skia/skia/src/core/SkColorData.h.big-endian	2018-04-18 13:42:06.980476156 +0200
969f7f
+++ firefox-60.0/gfx/skia/skia/src/core/SkColorData.h	2018-04-18 13:42:50.493520552 +0200
969f7f
@@ -31,18 +31,19 @@
969f7f
  *
969f7f
  *  Here we enforce this constraint.
969f7f
  */
969f7f
-
969f7f
+/*
969f7f
 #ifdef SK_CPU_BENDIAN
969f7f
     #define SK_BGRA_B32_SHIFT   24
969f7f
     #define SK_BGRA_G32_SHIFT   16
969f7f
     #define SK_BGRA_R32_SHIFT   8
969f7f
     #define SK_BGRA_A32_SHIFT   0
969f7f
 #else
969f7f
+*/
969f7f
     #define SK_BGRA_B32_SHIFT   0
969f7f
     #define SK_BGRA_G32_SHIFT   8
969f7f
     #define SK_BGRA_R32_SHIFT   16
969f7f
     #define SK_BGRA_A32_SHIFT   24
969f7f
-#endif
969f7f
+//#endif
969f7f
 
969f7f
 #if defined(SK_PMCOLOR_IS_RGBA) && defined(SK_PMCOLOR_IS_BGRA)
969f7f
     #error "can't define PMCOLOR to be RGBA and BGRA"