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