| Index: samplecode/SampleTiling.cpp
|
| diff --git a/samplecode/SampleTiling.cpp b/samplecode/SampleTiling.cpp
|
| index a59a8021b6c4c62b2b94f97945e1ea7bc11bc7a5..cc3b52915d50eab3051f0fe62c04fae3a2593262 100644
|
| --- a/samplecode/SampleTiling.cpp
|
| +++ b/samplecode/SampleTiling.cpp
|
| @@ -21,6 +21,7 @@
|
|
|
| // effects
|
| #include "SkGradientShader.h"
|
| +#include "SkUnitMappers.h"
|
| #include "SkBlurMask.h"
|
| #include "SkBlurDrawLooper.h"
|
|
|
| @@ -34,9 +35,16 @@
|
| SkScalar pos[] = { 0, SK_Scalar1/2, SK_Scalar1 };
|
| SkPaint paint;
|
|
|
| + SkUnitMapper* um = NULL;
|
| +
|
| + um = new SkCosineMapper;
|
| +// um = new SkDiscreteMapper(12);
|
| +
|
| + SkAutoUnref au(um);
|
| +
|
| paint.setDither(true);
|
| paint.setShader(SkGradientShader::CreateLinear(pts, colors, pos,
|
| - SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode))->unref();
|
| + SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode, um))->unref();
|
| canvas.drawPaint(paint);
|
| }
|
|
|
|
|