aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/twopointradial.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gm/twopointradial.cpp')
-rw-r--r--gm/twopointradial.cpp97
1 files changed, 97 insertions, 0 deletions
diff --git a/gm/twopointradial.cpp b/gm/twopointradial.cpp
new file mode 100644
index 0000000000..e2b06ecf43
--- /dev/null
+++ b/gm/twopointradial.cpp
@@ -0,0 +1,97 @@
+/*
+ * Copyright 2012 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#include "gm.h"
+#include "SkCanvas.h"
+#include "SkPaint.h"
+#include "SkGradientShader.h"
+
+static void intToScalars(SkScalar dst[], const int src[], int n) {
+ for (int i = 0; i < n; ++i) {
+ dst[i] = SkIntToScalar(src[i]);
+ }
+}
+
+static void drawGrad(SkCanvas* canvas, const SkScalar d0[], const SkScalar d1[]) {
+ SkPoint c0 = { d0[0], d0[1] };
+ SkScalar r0 = d0[2];
+ SkPoint c1 = { d1[0], d1[1] };
+ SkScalar r1 = d1[2];
+
+ SkColor colors[] = { SK_ColorGREEN, SK_ColorRED };
+ SkPaint paint;
+ paint.setAntiAlias(true);
+ paint.setShader(SkGradientShader::CreateTwoPointRadial(c0, r0, c1, r1,
+ colors, NULL, 2,
+ SkShader::kClamp_TileMode))->unref();
+ canvas->drawRect(SkRect::MakeXYWH(SkIntToScalar(-50),
+ SkIntToScalar(-50),
+ SkIntToScalar(200),
+ SkIntToScalar(100)), paint);
+
+ paint.setShader(NULL);
+ paint.setStyle(SkPaint::kStroke_Style);
+ canvas->drawCircle(c0.fX, c0.fY, r0, paint);
+ canvas->drawCircle(c1.fX, c1.fY, r1, paint);
+}
+
+class TwoPointRadialGM : public skiagm::GM {
+public:
+ TwoPointRadialGM() {}
+
+protected:
+ SkString onShortName() {
+ return SkString("two_point_radial");
+ }
+
+ SkISize onISize() { return skiagm::make_isize(480, 725); }
+
+ virtual void onDraw(SkCanvas* canvas) {
+ if (false) {
+ SkPaint paint;
+ paint.setColor(SK_ColorBLUE);
+ canvas->drawRect(SkRect::MakeWH(this->getISize().fWidth, this->getISize().fHeight), paint);
+ }
+ SkPaint paint;
+ const int R0 = 20;
+ const int R1 = 40;
+
+ const SkScalar DX = SkIntToScalar(250);
+ const SkScalar DY = SkIntToScalar(120);
+
+ canvas->translate(SkIntToScalar(60), SkIntToScalar(60));
+
+ static const int gData[] = {
+ 0, 0, R0, 0, 0, R1,
+ 0, 0, R0, 25, 0, R1,
+ 0, 0, R0, 100, 0, R1,
+ 0, 0, R0, 0, 0, R0,
+ 0, 0, R0, 25, 0, R0,
+ 0, 0, R0, 100, 0, R0,
+ };
+
+ int count = SK_ARRAY_COUNT(gData) / 6;
+ for (int i = 0; i < count; ++i) {
+ SkScalar data[6];
+ intToScalars(data, &gData[i * 6], 6);
+
+ int n = canvas->save();
+ drawGrad(canvas, &data[0], &data[3]);
+ canvas->translate(DX, 0);
+ drawGrad(canvas, &data[3], &data[0]);
+ canvas->restoreToCount(n);
+ canvas->translate(0, DY);
+ }
+ }
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+static skiagm::GM* F(void*) { return new TwoPointRadialGM; }
+
+static skiagm::GMRegistry gR(F);
+