blob: 9f4deb484b60fa26cf70c7d11d32e156275512b5 [file] [log] [blame]
reed@google.com3e71a882012-01-10 18:44:37 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkCanvas.h"
10#include "SkPath.h"
11#include "SkTypeface.h"
12
13static void test_path(SkCanvas* canvas, const SkPath& path) {
14 SkPaint paint;
15 paint.setAntiAlias(true);
16 canvas->drawPath(path, paint);
rmistry@google.comd6176b02012-08-23 18:14:13 +000017
reed@google.com3e71a882012-01-10 18:44:37 +000018 paint.setStyle(SkPaint::kStroke_Style);
19 paint.setColor(SK_ColorRED);
20 canvas->drawPath(path, paint);
21}
22
23static void test_rev(SkCanvas* canvas, const SkPath& path) {
24 test_path(canvas, path);
25
26 SkPath rev;
27 rev.reverseAddPath(path);
28 canvas->save();
29 canvas->translate(150, 0);
30 test_path(canvas, rev);
31 canvas->restore();
32}
33
34static void test_rev(SkCanvas* canvas) {
35 SkRect r = { 10, 10, 100, 60 };
36
37 SkPath path;
38
39 path.addRect(r); test_rev(canvas, path);
40
41 canvas->translate(0, 100);
42 path.offset(20, 20);
43 path.addRect(r); test_rev(canvas, path);
44
45 canvas->translate(0, 100);
46 path.reset();
47 path.moveTo(10, 10); path.lineTo(30, 30);
48 path.addOval(r);
49 r.offset(50, 20);
50 path.addOval(r);
51 test_rev(canvas, path);
52
53 SkPaint paint;
54 paint.setTextSize(SkIntToScalar(100));
Cary Clark992c7b02014-07-31 08:58:44 -040055 sk_tool_utils::set_portable_typeface(&paint, "Hiragino Maru Gothic Pro");
reed@google.com3e71a882012-01-10 18:44:37 +000056 path.reset();
57 paint.getTextPath("e", 1, 50, 50, &path);
58 canvas->translate(0, 100);
59 test_rev(canvas, path);
60}
61
62namespace skiagm {
63
64class PathReverseGM : public GM {
65public:
66 PathReverseGM() {
67
68 }
69
70protected:
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +000071
mtklein36352bf2015-03-25 18:17:31 -070072 SkString onShortName() override {
reed@google.com3e71a882012-01-10 18:44:37 +000073 return SkString("path-reverse");
74 }
75
mtklein36352bf2015-03-25 18:17:31 -070076 SkISize onISize() override {
tfarinaf5393182014-06-09 23:59:03 -070077 return SkISize::Make(640, 480);
reed@google.com3e71a882012-01-10 18:44:37 +000078 }
79
mtklein36352bf2015-03-25 18:17:31 -070080 void onDraw(SkCanvas* canvas) override {
caryclark@google.com13130862012-06-06 12:10:45 +000081 if (false) test_rev(canvas); // avoid bit rot, suppress warning
reed@google.com3e71a882012-01-10 18:44:37 +000082 SkRect r = { 10, 10, 100, 60 };
rmistry@google.comd6176b02012-08-23 18:14:13 +000083
reed@google.com3e71a882012-01-10 18:44:37 +000084 SkPath path;
rmistry@google.comd6176b02012-08-23 18:14:13 +000085
reed@google.com3e71a882012-01-10 18:44:37 +000086 path.addRect(r); test_rev(canvas, path);
rmistry@google.comd6176b02012-08-23 18:14:13 +000087
reed@google.com3e71a882012-01-10 18:44:37 +000088 canvas->translate(0, 100);
89 path.offset(20, 20);
90 path.addRect(r); test_rev(canvas, path);
rmistry@google.comd6176b02012-08-23 18:14:13 +000091
reed@google.com3e71a882012-01-10 18:44:37 +000092 canvas->translate(0, 100);
93 path.reset();
94 path.moveTo(10, 10); path.lineTo(30, 30);
95 path.addOval(r);
96 r.offset(50, 20);
97 path.addOval(r);
98 test_rev(canvas, path);
rmistry@google.comd6176b02012-08-23 18:14:13 +000099
reed@google.com3e71a882012-01-10 18:44:37 +0000100 SkPaint paint;
101 paint.setTextSize(SkIntToScalar(100));
Cary Clark992c7b02014-07-31 08:58:44 -0400102 sk_tool_utils::set_portable_typeface(&paint, "Hiragino Maru Gothic Pro");
reed@google.com3e71a882012-01-10 18:44:37 +0000103 path.reset();
104 paint.getTextPath("e", 1, 50, 50, &path);
105 canvas->translate(0, 100);
106 test_rev(canvas, path);
107 }
108
109private:
110 typedef GM INHERITED;
111};
112
113//////////////////////////////////////////////////////////////////////////////
114
115static GM* MyFactory(void*) { return new PathReverseGM; }
116static GMRegistry reg(MyFactory);
117
118}