blob: 997fcf64ad4d354f8ede66c1e9d9e5f46ec6ebd4 [file] [log] [blame]
dandov50d71542014-07-25 10:44:53 -07001/*
2 * Copyright 2014 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -04009#include "include/core/SkBlendMode.h"
10#include "include/core/SkCanvas.h"
11#include "include/core/SkColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/core/SkImage.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040013#include "include/core/SkPaint.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "include/core/SkPath.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040015#include "include/core/SkPoint.h"
16#include "include/core/SkRefCnt.h"
17#include "include/core/SkScalar.h"
18#include "include/core/SkShader.h"
19#include "include/core/SkTileMode.h"
20#include "include/core/SkTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "include/effects/SkGradientShader.h"
22#include "src/utils/SkPatchUtils.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040023#include "tools/Resources.h"
dandov50d71542014-07-25 10:44:53 -070024
reed1a9b9642016-03-13 14:13:58 -070025static sk_sp<SkShader> make_shader() {
dandovb3c9d1c2014-08-12 08:34:29 -070026 const SkColor colors[] = {
27 SK_ColorRED, SK_ColorCYAN, SK_ColorGREEN, SK_ColorWHITE, SK_ColorMAGENTA, SK_ColorBLUE,
28 SK_ColorYELLOW,
29 };
30 const SkPoint pts[] = { { 100.f / 4.f, 0.f }, { 3.f * 100.f / 4.f, 100.f } };
halcanary9d524f22016-03-29 09:03:52 -070031
reed1a9b9642016-03-13 14:13:58 -070032 return SkGradientShader::MakeLinear(pts, colors, nullptr, SK_ARRAY_COUNT(colors),
Mike Reedfae8fce2019-04-03 10:27:45 -040033 SkTileMode::kMirror);
dandovb3c9d1c2014-08-12 08:34:29 -070034}
dandov50d71542014-07-25 10:44:53 -070035
dandovb3c9d1c2014-08-12 08:34:29 -070036static void draw_control_points(SkCanvas* canvas, const SkPoint cubics[12]) {
dandovecfff212014-08-04 10:02:00 -070037 //draw control points
dandov963137b2014-08-07 07:49:53 -070038 SkPaint paint;
dandovb3c9d1c2014-08-12 08:34:29 -070039 SkPoint bottom[SkPatchUtils::kNumPtsCubic];
Mike Reed4ebb43e2017-04-05 11:06:15 -040040 SkPatchUtils::GetBottomCubic(cubics, bottom);
dandovb3c9d1c2014-08-12 08:34:29 -070041 SkPoint top[SkPatchUtils::kNumPtsCubic];
Mike Reed4ebb43e2017-04-05 11:06:15 -040042 SkPatchUtils::GetTopCubic(cubics, top);
dandovb3c9d1c2014-08-12 08:34:29 -070043 SkPoint left[SkPatchUtils::kNumPtsCubic];
Mike Reed4ebb43e2017-04-05 11:06:15 -040044 SkPatchUtils::GetLeftCubic(cubics, left);
dandovb3c9d1c2014-08-12 08:34:29 -070045 SkPoint right[SkPatchUtils::kNumPtsCubic];
Mike Reed4ebb43e2017-04-05 11:06:15 -040046 SkPatchUtils::GetRightCubic(cubics, right);
dandovecfff212014-08-04 10:02:00 -070047
dandov963137b2014-08-07 07:49:53 -070048 paint.setColor(SK_ColorBLACK);
dandovb3c9d1c2014-08-12 08:34:29 -070049 paint.setStrokeWidth(0.5f);
dandovecfff212014-08-04 10:02:00 -070050 SkPoint corners[4] = { bottom[0], bottom[3], top[0], top[3] };
dandov963137b2014-08-07 07:49:53 -070051 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, bottom, paint);
dandovb3c9d1c2014-08-12 08:34:29 -070052 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, bottom + 1, paint);
dandov963137b2014-08-07 07:49:53 -070053 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, top, paint);
54 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, left, paint);
55 canvas->drawPoints(SkCanvas::kLines_PointMode, 4, right, paint);
dandovecfff212014-08-04 10:02:00 -070056
dandovb3c9d1c2014-08-12 08:34:29 -070057 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, top + 1, paint);
58 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, left + 1, paint);
59 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, right + 1, paint);
dandovecfff212014-08-04 10:02:00 -070060
dandov963137b2014-08-07 07:49:53 -070061 paint.setStrokeWidth(2);
dandovecfff212014-08-04 10:02:00 -070062
dandov963137b2014-08-07 07:49:53 -070063 paint.setColor(SK_ColorRED);
64 canvas->drawPoints(SkCanvas::kPoints_PointMode, 4, corners, paint);
dandovecfff212014-08-04 10:02:00 -070065
dandov963137b2014-08-07 07:49:53 -070066 paint.setColor(SK_ColorBLUE);
dandovb3c9d1c2014-08-12 08:34:29 -070067 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, bottom + 1, paint);
dandovecfff212014-08-04 10:02:00 -070068
dandov963137b2014-08-07 07:49:53 -070069 paint.setColor(SK_ColorCYAN);
dandovb3c9d1c2014-08-12 08:34:29 -070070 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, top + 1, paint);
dandovecfff212014-08-04 10:02:00 -070071
dandov963137b2014-08-07 07:49:53 -070072 paint.setColor(SK_ColorYELLOW);
dandovb3c9d1c2014-08-12 08:34:29 -070073 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, left + 1, paint);
dandovecfff212014-08-04 10:02:00 -070074
dandov963137b2014-08-07 07:49:53 -070075 paint.setColor(SK_ColorGREEN);
dandovb3c9d1c2014-08-12 08:34:29 -070076 canvas->drawPoints(SkCanvas::kPoints_PointMode, 2, right + 1, paint);
dandovecfff212014-08-04 10:02:00 -070077}
78
Mike Reedb8abb4c2017-05-23 09:53:37 -040079// The order of the colors and points is clockwise starting at upper-left corner.
80const SkPoint gCubics[SkPatchUtils::kNumCtrlPts] = {
81 //top points
82 {100,100},{150,50},{250,150}, {300,100},
83 //right points
84 {250, 150},{350,250},
85 //bottom points
86 {300,300},{250,250},{150,350},{100,300},
87 //left points
88 {50,250},{150,150}
89};
halcanary9d524f22016-03-29 09:03:52 -070090
Mike Reedb8abb4c2017-05-23 09:53:37 -040091const SkPoint gTexCoords[SkPatchUtils::kNumCorners] = {
92 {0.0f, 0.0f}, {100.0f, 0.0f}, {100.0f,100.0f}, {0.0f, 100.0f}
93};
halcanary9d524f22016-03-29 09:03:52 -070094
halcanary9d524f22016-03-29 09:03:52 -070095
Mike Reedd36968b2017-05-23 21:27:59 -040096static void dopatch(SkCanvas* canvas, const SkColor colors[], sk_sp<SkImage> img = nullptr) {
Mike Reedb8abb4c2017-05-23 09:53:37 -040097 SkPaint paint;
halcanary9d524f22016-03-29 09:03:52 -070098
Mike Reedb8abb4c2017-05-23 09:53:37 -040099 const SkBlendMode modes[] = {
100 SkBlendMode::kSrc,
101 SkBlendMode::kDst,
102 SkBlendMode::kModulate,
103 };
halcanary9d524f22016-03-29 09:03:52 -0700104
Mike Reedd36968b2017-05-23 21:27:59 -0400105 SkPoint texStorage[4];
106 const SkPoint* tex = gTexCoords;
107
108 sk_sp<SkShader> shader;
109 if (img) {
110 SkScalar w = img->width();
111 SkScalar h = img->height();
Mike Reedfae8fce2019-04-03 10:27:45 -0400112 shader = img->makeShader();
Mike Reedd36968b2017-05-23 21:27:59 -0400113 texStorage[0].set(0, 0);
114 texStorage[1].set(w, 0);
115 texStorage[2].set(w, h);
116 texStorage[3].set(0, h);
117 tex = texStorage;
118 } else {
119 shader = make_shader();
120 }
halcanary9d524f22016-03-29 09:03:52 -0700121
Mike Reedb8abb4c2017-05-23 09:53:37 -0400122 canvas->save();
123 for (int y = 0; y < 3; y++) {
124 for (int x = 0; x < 4; x++) {
125 canvas->save();
126 canvas->translate(x * 350.0f, y * 350.0f);
127 switch (x) {
128 case 0:
129 canvas->drawPatch(gCubics, nullptr, nullptr, modes[y], paint);
130 break;
131 case 1:
132 canvas->drawPatch(gCubics, colors, nullptr, modes[y], paint);
133 break;
134 case 2:
135 paint.setShader(shader);
Mike Reedd36968b2017-05-23 21:27:59 -0400136 canvas->drawPatch(gCubics, nullptr, tex, modes[y], paint);
Mike Reedb8abb4c2017-05-23 09:53:37 -0400137 paint.setShader(nullptr);
138 break;
139 case 3:
140 paint.setShader(shader);
Mike Reedd36968b2017-05-23 21:27:59 -0400141 canvas->drawPatch(gCubics, colors, tex, modes[y], paint);
Mike Reedb8abb4c2017-05-23 09:53:37 -0400142 paint.setShader(nullptr);
143 break;
144 default:
145 break;
dandovb3c9d1c2014-08-12 08:34:29 -0700146 }
Mike Reedb8abb4c2017-05-23 09:53:37 -0400147
148 draw_control_points(canvas, gCubics);
149 canvas->restore();
dandovecfff212014-08-04 10:02:00 -0700150 }
Mike Reedb8abb4c2017-05-23 09:53:37 -0400151 }
152 canvas->restore();
dandov50d71542014-07-25 10:44:53 -0700153}
Mike Reedb8abb4c2017-05-23 09:53:37 -0400154
155DEF_SIMPLE_GM(patch_primitive, canvas, 1500, 1100) {
156 const SkColor colors[SkPatchUtils::kNumCorners] = {
157 SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE, SK_ColorCYAN
158 };
159 dopatch(canvas, colors);
160}
Mike Reedd36968b2017-05-23 21:27:59 -0400161DEF_SIMPLE_GM(patch_image, canvas, 1500, 1100) {
162 const SkColor colors[SkPatchUtils::kNumCorners] = {
163 SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE, SK_ColorCYAN
164 };
Hal Canaryc465d132017-12-08 10:21:31 -0500165 dopatch(canvas, colors, GetResourceAsImage("images/mandrill_128.png"));
Mike Reedd36968b2017-05-23 21:27:59 -0400166}
Mike Reedb8abb4c2017-05-23 09:53:37 -0400167DEF_SIMPLE_GM(patch_alpha, canvas, 1500, 1100) {
168 const SkColor colors[SkPatchUtils::kNumCorners] = {
169 SK_ColorRED, 0x0000FF00, SK_ColorBLUE, 0x00FF00FF,
170 };
171 dopatch(canvas, colors);
172}
173
174// These two should look the same (one patch, one simple path)
175DEF_SIMPLE_GM(patch_alpha_test, canvas, 550, 250) {
176 canvas->translate(-75, -75);
177
178 const SkColor colors[SkPatchUtils::kNumCorners] = {
179 0x80FF0000, 0x80FF0000, 0x80FF0000, 0x80FF0000,
180 };
181 SkPaint paint;
182 canvas->drawPatch(gCubics, colors, nullptr, SkBlendMode::kModulate, paint);
183
184 canvas->translate(300, 0);
185
186 SkPath path;
187 path.moveTo(gCubics[0]);
188 path.cubicTo(gCubics[ 1], gCubics[ 2], gCubics[ 3]);
189 path.cubicTo(gCubics[ 4], gCubics[ 5], gCubics[ 6]);
190 path.cubicTo(gCubics[ 7], gCubics[ 8], gCubics[ 9]);
191 path.cubicTo(gCubics[10], gCubics[11], gCubics[ 0]);
192 paint.setColor(colors[0]);
193 canvas->drawPath(path, paint);
194}
195