83ba88
diff -up firefox-78.0/gfx/skia/skia/src/gpu/GrColor.h.mozilla.bmo1005535 firefox-78.0/gfx/skia/skia/src/gpu/GrColor.h
83ba88
--- firefox-78.0/gfx/skia/skia/src/gpu/GrColor.h.mozilla.bmo1005535	2020-06-25 16:16:34.459083304 +0200
83ba88
+++ firefox-78.0/gfx/skia/skia/src/gpu/GrColor.h	2020-06-25 16:17:00.968174743 +0200
83ba88
@@ -64,7 +64,7 @@ static inline GrColor GrColorPackRGBA(un
83ba88
  *  Since premultiplied means that alpha >= color, we construct a color with
83ba88
  *  each component==255 and alpha == 0 to be "illegal"
83ba88
  */
83ba88
-#define GrColor_ILLEGAL     (~(0xFF << GrColor_SHIFT_A))
83ba88
+#define GrColor_ILLEGAL     ((uint32_t)(~(0xFF << GrColor_SHIFT_A)))
83ba88
 
83ba88
 /** Normalizes and coverts an uint8_t to a float. [0, 255] -> [0.0, 1.0] */
83ba88
 static inline float GrNormalizeByteToFloat(uint8_t value) {