Chromium Code Reviews| Index: gm/tilemodes_scaled.cpp |
| diff --git a/gm/tilemodes_scaled.cpp b/gm/tilemodes_scaled.cpp |
| index a79002b56b31788537da9a7ce7fc823ea6afdac6..88a070afb5b627d16a1afd7aab70cdce8bbf0093 100644 |
| --- a/gm/tilemodes_scaled.cpp |
| +++ b/gm/tilemodes_scaled.cpp |
| @@ -17,7 +17,6 @@ |
| // effects |
| #include "SkGradientShader.h" |
| -#include "SkUnitMappers.h" |
| #include "SkBlurDrawLooper.h" |
| static void makebm(SkBitmap* bm, SkColorType ct, int w, int h) { |
| @@ -30,16 +29,9 @@ static void makebm(SkBitmap* bm, SkColorType ct, int w, int h) { |
| SkScalar pos[] = { 0, SK_Scalar1/2, SK_Scalar1 }; |
| SkPaint paint; |
| - SkUnitMapper* um = NULL; |
| - |
| - um = new SkCosineMapper; |
|
scroggo
2014/05/15 14:33:38
Does this gm change? Please add any that change to
reed1
2014/05/15 15:37:21
Yes (unfortunately), all the edited GMs will have
|
| -// um = new SkDiscreteMapper(12); |
| - |
| - SkAutoUnref au(um); |
| - |
| paint.setDither(true); |
| paint.setShader(SkGradientShader::CreateLinear(pts, colors, pos, |
| - SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode, um))->unref(); |
| + SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode))->unref(); |
| canvas.drawPaint(paint); |
| } |