2 * Copyright 2012 Google Inc.
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
10 #include "Sk1DPathEffect.h"
11 #include "Sk2DPathEffect.h"
12 #include "SkCornerPathEffect.h"
13 #include "SkDashPathEffect.h"
14 #include "SkDiscretePathEffect.h"
18 static void compose_pe(SkPaint* paint) {
19 SkPathEffect* pe = paint->getPathEffect();
20 SkPathEffect* corner = SkCornerPathEffect::Create(25);
21 SkPathEffect* compose;
23 compose = SkComposePathEffect::Create(pe, corner);
28 paint->setPathEffect(compose)->unref();
31 static void hair_pe(SkPaint* paint) {
32 paint->setStrokeWidth(0);
35 static void hair2_pe(SkPaint* paint) {
36 paint->setStrokeWidth(0);
40 static void stroke_pe(SkPaint* paint) {
41 paint->setStrokeWidth(12);
45 static void dash_pe(SkPaint* paint) {
46 SkScalar inter[] = { 20, 10, 10, 10 };
47 paint->setStrokeWidth(12);
48 paint->setPathEffect(SkDashPathEffect::Create(inter, SK_ARRAY_COUNT(inter),
53 static const int gXY[] = {
54 4, 0, 0, -4, 8, -4, 12, 0, 8, 4, 0, 4
57 static void scale(SkPath* path, SkScalar scale) {
59 m.setScale(scale, scale);
63 static void one_d_pe(SkPaint* paint) {
65 path.moveTo(SkIntToScalar(gXY[0]), SkIntToScalar(gXY[1]));
66 for (unsigned i = 2; i < SK_ARRAY_COUNT(gXY); i += 2)
67 path.lineTo(SkIntToScalar(gXY[i]), SkIntToScalar(gXY[i+1]));
69 path.offset(SkIntToScalar(-6), 0);
72 paint->setPathEffect(SkPath1DPathEffect::Create(path, SkIntToScalar(21), 0,
73 SkPath1DPathEffect::kRotate_Style))->unref();
77 typedef void (*PE_Proc)(SkPaint*);
78 static const PE_Proc gPE[] = { hair_pe, hair2_pe, stroke_pe, dash_pe, one_d_pe };
80 static void fill_pe(SkPaint* paint) {
81 paint->setStyle(SkPaint::kFill_Style);
82 paint->setPathEffect(NULL);
85 static void discrete_pe(SkPaint* paint) {
86 paint->setPathEffect(SkDiscretePathEffect::Create(10, 4))->unref();
89 static SkPathEffect* MakeTileEffect() {
91 m.setScale(SkIntToScalar(12), SkIntToScalar(12));
94 path.addCircle(0, 0, SkIntToScalar(5));
96 return SkPath2DPathEffect::Create(m, path);
99 static void tile_pe(SkPaint* paint) {
100 paint->setPathEffect(MakeTileEffect())->unref();
103 static const PE_Proc gPE2[] = { fill_pe, discrete_pe, tile_pe };
105 class PathEffectGM : public GM {
111 SkString onShortName() SK_OVERRIDE {
112 return SkString("patheffect");
115 SkISize onISize() SK_OVERRIDE { return SkISize::Make(800, 600); }
117 void onDraw(SkCanvas* canvas) SK_OVERRIDE {
119 paint.setAntiAlias(true);
120 paint.setStyle(SkPaint::kStroke_Style);
124 path.lineTo(70, 120);
125 path.lineTo(120, 30);
126 path.lineTo(170, 80);
127 path.lineTo(240, 50);
131 for (i = 0; i < SK_ARRAY_COUNT(gPE); i++) {
133 canvas->drawPath(path, paint);
134 canvas->translate(0, 75);
139 SkRect r = { 0, 0, 250, 120 };
140 path.addOval(r, SkPath::kCW_Direction);
142 path.addRect(r, SkPath::kCCW_Direction);
144 canvas->translate(320, 20);
145 for (i = 0; i < SK_ARRAY_COUNT(gPE2); i++) {
147 canvas->drawPath(path, paint);
148 canvas->translate(0, 160);
151 SkIRect rect = SkIRect::MakeXYWH(20, 20, 60, 60);
152 for (i = 0; i < SK_ARRAY_COUNT(gPE); i++) {
154 p.setAntiAlias(true);
155 p.setStyle(SkPaint::kFill_Style);
157 canvas->drawIRect(rect, p);
158 canvas->translate(75, 0);
163 typedef GM INHERITED;
166 //////////////////////////////////////////////////////////////////////////////
168 static GM* PathEffectFactory(void*) { return new PathEffectGM; }
169 static GMRegistry regPathEffect(PathEffectFactory);