| Index: gm/imagefilterscropped.cpp
|
| diff --git a/gm/imagefilterscropped.cpp b/gm/imagefilterscropped.cpp
|
| index 929f2fe3fce82cb1a408b9c7dcfd4af95b357662..c5bef7b3f870a0213a77059cfbae07e3c4e2855d 100644
|
| --- a/gm/imagefilterscropped.cpp
|
| +++ b/gm/imagefilterscropped.cpp
|
| @@ -107,9 +107,9 @@ protected:
|
| SkCanvas canvas(fCheckerboard);
|
| canvas.clear(SK_ColorTRANSPARENT);
|
| SkPaint darkPaint;
|
| - darkPaint.setColor(0xFF404040);
|
| + darkPaint.setColor(sk_tool_utils::color_to_565(0xFF404040));
|
| SkPaint lightPaint;
|
| - lightPaint.setColor(0xFFA0A0A0);
|
| + lightPaint.setColor(sk_tool_utils::color_to_565(0xFFA0A0A0));
|
| for (int y = 0; y < 80; y += 16) {
|
| for (int x = 0; x < 80; x += 16) {
|
| canvas.save();
|
|
|