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