blob: f26403e90ef9d9d4bf99940cc4becc4f4a693070 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +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 */
reed@google.combf0001d2014-01-13 14:53:55 +00007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "include/core/SkCanvas.h"
9#include "include/core/SkFont.h"
10#include "include/core/SkString.h"
11#include "include/effects/SkGradientShader.h"
12#include "samplecode/Sample.h"
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000013
14static void draw_gradient2(SkCanvas* canvas, const SkRect& rect, SkScalar delta) {
15 SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, SK_ColorBLUE, SK_ColorMAGENTA };
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000016 SkScalar pos[] = { 0, 0.25f, 0.75f, SK_Scalar1 };
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000017
18 SkScalar l = rect.fLeft;
19 SkScalar t = rect.fTop;
20 SkScalar w = rect.width();
21 SkScalar h = rect.height();
22
23 SkASSERT(0 == SkScalarMod(w, SK_Scalar1 * 5));
24
25 SkPoint c0 = { l + 2 * w / 5 + delta, t + h / 2 };
26 SkPoint c1 = { l + 3 * w / 5, t + h / 2 };
27 SkScalar r0 = w / 5;
28 SkScalar r1 = 2 * w / 5;
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000029 SkPaint paint;
reed8a21c9f2016-03-08 18:50:00 -080030 paint.setShader(SkGradientShader::MakeTwoPointConical(c0, r0, c1, r1, colors,
31 pos, SK_ARRAY_COUNT(pos),
Mike Reedfae8fce2019-04-03 10:27:45 -040032 SkTileMode::kClamp));
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000033 canvas->drawRect(rect, paint);
34}
35
36
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040037class DegenerateTwoPtRadialsView : public Sample {
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000038public:
39 DegenerateTwoPtRadialsView() {
40 fTime = 0;
41 this->setBGColor(0xFFDDDDDD);
42 }
43
44protected:
Hal Canary8a027312019-07-03 10:55:44 -040045 SkString name() override { return SkString("DegenerateTwoPtRadials"); }
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000046
mtklein36352bf2015-03-25 18:17:31 -070047 void onDrawContent(SkCanvas* canvas) override {
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000048 SkScalar delta = fTime / 15.f;
reed@google.come1ca7052013-12-17 19:22:07 +000049 int intPart = SkScalarFloorToInt(delta);
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000050 delta = delta - SK_Scalar1 * intPart;
51 if (intPart % 2) {
52 delta = SK_Scalar1 - delta;
53 }
54 delta -= SK_ScalarHalf;
55 static const int DELTA_SCALE = 500;
56 delta /= DELTA_SCALE;
57
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000058 SkScalar w = SK_Scalar1 * 500;
59 SkScalar h = SK_Scalar1 * 500;
60 SkScalar l = SK_Scalar1 * 100;
61 SkScalar t = SK_Scalar1 * 100;
62 draw_gradient2(canvas, SkRect::MakeXYWH(l, t, w, h), delta);
bungeman@google.comfab44db2013-10-11 18:50:45 +000063 SkString txt;
64 txt.appendf("gap at \"tangent\" pt = %f", SkScalarToFloat(delta));
Hal Canary89a644b2019-01-07 09:36:09 -050065 canvas->drawString(txt, l + w / 2 + w * DELTA_SCALE * delta, t + h + SK_Scalar1 * 10,
66 SkFont(), SkPaint());
reedd9adfe62015-02-01 19:01:04 -080067 }
68
Hal Canary41248072019-07-11 16:32:53 -040069 bool onAnimate(double nanos) override {
70 fTime = SkDoubleToScalar(1e-9 * nanos / 15);
reedd9adfe62015-02-01 19:01:04 -080071 return true;
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000072 }
73
74private:
75 SkScalar fTime;
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040076 typedef Sample INHERITED;
bsalomon@google.com22c5dea2011-07-07 14:38:03 +000077};
78
79//////////////////////////////////////////////////////////////////////////////
80
Ben Wagnerb2c4ea62018-08-08 11:36:17 -040081DEF_SAMPLE( return new DegenerateTwoPtRadialsView(); )