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