2011-06-18 00:15:04 +00:00
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2011-06-18 00:15:04 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
#include "gm.h"
|
|
|
|
#include "SkRandom.h"
|
|
|
|
|
|
|
|
#define W 400
|
|
|
|
#define H 400
|
|
|
|
#define N 50
|
|
|
|
|
|
|
|
static const SkScalar SW = SkIntToScalar(W);
|
|
|
|
static const SkScalar SH = SkIntToScalar(H);
|
|
|
|
|
2014-12-15 20:54:51 +00:00
|
|
|
static void rnd_rect(SkRect* r, SkPaint* paint, SkRandom& rand) {
|
2011-06-18 00:15:04 +00:00
|
|
|
SkScalar x = rand.nextUScalar1() * W;
|
|
|
|
SkScalar y = rand.nextUScalar1() * H;
|
|
|
|
SkScalar w = rand.nextUScalar1() * (W >> 2);
|
|
|
|
SkScalar h = rand.nextUScalar1() * (H >> 2);
|
2011-08-26 14:40:38 +00:00
|
|
|
SkScalar hoffset = rand.nextSScalar1();
|
|
|
|
SkScalar woffset = rand.nextSScalar1();
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
r->set(x, y, x + w, y + h);
|
2011-08-26 14:40:38 +00:00
|
|
|
r->offset(-w/2 + woffset, -h/2 + hoffset);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
paint->setColor(rand.nextU());
|
|
|
|
paint->setAlpha(0xFF);
|
|
|
|
}
|
|
|
|
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
class StrokesGM : public skiagm::GM {
|
2011-06-18 00:15:04 +00:00
|
|
|
public:
|
|
|
|
StrokesGM() {}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
protected:
|
2014-04-30 13:20:45 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
SkString onShortName() SK_OVERRIDE {
|
2011-06-18 00:15:04 +00:00
|
|
|
return SkString("strokes_round");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
SkISize onISize() SK_OVERRIDE {
|
2012-06-05 16:14:23 +00:00
|
|
|
return SkISize::Make(W, H*2);
|
2011-06-18 00:15:04 +00:00
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
2011-06-18 00:15:04 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
paint.setStrokeWidth(SkIntToScalar(9)/2);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
for (int y = 0; y < 2; y++) {
|
|
|
|
paint.setAntiAlias(!!y);
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
canvas->translate(0, SH * y);
|
|
|
|
canvas->clipRect(SkRect::MakeLTRB(
|
|
|
|
SkIntToScalar(2), SkIntToScalar(2)
|
|
|
|
, SW - SkIntToScalar(2), SH - SkIntToScalar(2)
|
|
|
|
));
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2014-12-15 20:54:51 +00:00
|
|
|
SkRandom rand;
|
2011-06-18 00:15:04 +00:00
|
|
|
for (int i = 0; i < N; i++) {
|
|
|
|
SkRect r;
|
|
|
|
rnd_rect(&r, &paint, rand);
|
|
|
|
canvas->drawOval(r, paint);
|
|
|
|
rnd_rect(&r, &paint, rand);
|
|
|
|
canvas->drawRoundRect(r, r.width()/4, r.height()/4, paint);
|
|
|
|
rnd_rect(&r, &paint, rand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
private:
|
2012-06-05 16:14:23 +00:00
|
|
|
typedef skiagm::GM INHERITED;
|
2011-06-18 00:15:04 +00:00
|
|
|
};
|
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
class Strokes2GM : public skiagm::GM {
|
2011-06-18 00:15:04 +00:00
|
|
|
SkPath fPath;
|
2015-02-25 17:04:04 +00:00
|
|
|
protected:
|
|
|
|
void onOnceBeforeDraw() SK_OVERRIDE {
|
2014-12-15 20:54:51 +00:00
|
|
|
SkRandom rand;
|
2011-06-18 00:15:04 +00:00
|
|
|
fPath.moveTo(0, 0);
|
|
|
|
for (int i = 0; i < 13; i++) {
|
|
|
|
SkScalar x = rand.nextUScalar1() * (W >> 1);
|
|
|
|
SkScalar y = rand.nextUScalar1() * (H >> 1);
|
|
|
|
fPath.lineTo(x, y);
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2014-04-30 13:20:45 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
SkString onShortName() SK_OVERRIDE {
|
2011-06-18 00:15:04 +00:00
|
|
|
return SkString("strokes_poly");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
SkISize onISize() SK_OVERRIDE {
|
2012-06-05 16:14:23 +00:00
|
|
|
return SkISize::Make(W, H*2);
|
2011-06-18 00:15:04 +00:00
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
static void rotate(SkScalar angle, SkScalar px, SkScalar py, SkCanvas* canvas) {
|
|
|
|
SkMatrix matrix;
|
|
|
|
matrix.setRotate(angle, px, py);
|
|
|
|
canvas->concat(matrix);
|
|
|
|
}
|
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
2011-06-18 00:15:04 +00:00
|
|
|
canvas->drawColor(SK_ColorWHITE);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
paint.setStrokeWidth(SkIntToScalar(9)/2);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
for (int y = 0; y < 2; y++) {
|
|
|
|
paint.setAntiAlias(!!y);
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
canvas->translate(0, SH * y);
|
|
|
|
canvas->clipRect(SkRect::MakeLTRB(SkIntToScalar(2),
|
|
|
|
SkIntToScalar(2),
|
|
|
|
SW - SkIntToScalar(2),
|
|
|
|
SH - SkIntToScalar(2)));
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2014-12-15 20:54:51 +00:00
|
|
|
SkRandom rand;
|
2011-06-18 00:15:04 +00:00
|
|
|
for (int i = 0; i < N/2; i++) {
|
|
|
|
SkRect r;
|
|
|
|
rnd_rect(&r, &paint, rand);
|
|
|
|
rotate(SkIntToScalar(15), SW/2, SH/2, canvas);
|
|
|
|
canvas->drawPath(fPath, paint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-06-18 00:15:04 +00:00
|
|
|
private:
|
2012-06-05 16:14:23 +00:00
|
|
|
typedef skiagm::GM INHERITED;
|
2011-06-18 00:15:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
static SkRect inset(const SkRect& r) {
|
|
|
|
SkRect rr(r);
|
|
|
|
rr.inset(r.width()/10, r.height()/10);
|
|
|
|
return rr;
|
|
|
|
}
|
2011-06-18 00:15:04 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
class Strokes3GM : public skiagm::GM {
|
|
|
|
static void make0(SkPath* path, const SkRect& bounds, SkString* title) {
|
|
|
|
path->addRect(bounds, SkPath::kCW_Direction);
|
|
|
|
path->addRect(inset(bounds), SkPath::kCW_Direction);
|
|
|
|
title->set("CW CW");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
static void make1(SkPath* path, const SkRect& bounds, SkString* title) {
|
|
|
|
path->addRect(bounds, SkPath::kCW_Direction);
|
|
|
|
path->addRect(inset(bounds), SkPath::kCCW_Direction);
|
|
|
|
title->set("CW CCW");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
static void make2(SkPath* path, const SkRect& bounds, SkString* title) {
|
|
|
|
path->addOval(bounds, SkPath::kCW_Direction);
|
|
|
|
path->addOval(inset(bounds), SkPath::kCW_Direction);
|
|
|
|
title->set("CW CW");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
static void make3(SkPath* path, const SkRect& bounds, SkString* title) {
|
|
|
|
path->addOval(bounds, SkPath::kCW_Direction);
|
|
|
|
path->addOval(inset(bounds), SkPath::kCCW_Direction);
|
|
|
|
title->set("CW CCW");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
static void make4(SkPath* path, const SkRect& bounds, SkString* title) {
|
|
|
|
path->addRect(bounds, SkPath::kCW_Direction);
|
|
|
|
SkRect r = bounds;
|
|
|
|
r.inset(bounds.width() / 10, -bounds.height() / 10);
|
|
|
|
path->addOval(r, SkPath::kCW_Direction);
|
|
|
|
title->set("CW CW");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
static void make5(SkPath* path, const SkRect& bounds, SkString* title) {
|
|
|
|
path->addRect(bounds, SkPath::kCW_Direction);
|
|
|
|
SkRect r = bounds;
|
|
|
|
r.inset(bounds.width() / 10, -bounds.height() / 10);
|
|
|
|
path->addOval(r, SkPath::kCCW_Direction);
|
|
|
|
title->set("CW CCW");
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
Strokes3GM() {}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
protected:
|
2014-04-30 13:20:45 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
SkString onShortName() SK_OVERRIDE {
|
2012-06-05 16:14:23 +00:00
|
|
|
return SkString("strokes3");
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
SkISize onISize() SK_OVERRIDE {
|
2015-02-23 14:51:04 +00:00
|
|
|
return SkISize::Make(1500, 1500);
|
2012-06-05 16:14:23 +00:00
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2015-01-09 18:06:39 +00:00
|
|
|
void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
2012-06-05 16:14:23 +00:00
|
|
|
SkPaint origPaint;
|
|
|
|
origPaint.setAntiAlias(true);
|
|
|
|
origPaint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
SkPaint fillPaint(origPaint);
|
|
|
|
fillPaint.setColor(SK_ColorRED);
|
|
|
|
SkPaint strokePaint(origPaint);
|
|
|
|
strokePaint.setColor(0xFF4444FF);
|
|
|
|
|
|
|
|
void (*procs[])(SkPath*, const SkRect&, SkString*) = {
|
|
|
|
make0, make1, make2, make3, make4, make5
|
|
|
|
};
|
|
|
|
|
2015-02-23 14:51:04 +00:00
|
|
|
canvas->translate(SkIntToScalar(20), SkIntToScalar(80));
|
2012-06-05 16:14:23 +00:00
|
|
|
|
|
|
|
SkRect bounds = SkRect::MakeWH(SkIntToScalar(50), SkIntToScalar(50));
|
|
|
|
SkScalar dx = bounds.width() * 4/3;
|
|
|
|
SkScalar dy = bounds.height() * 5;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(procs); ++i) {
|
|
|
|
SkPath orig;
|
|
|
|
SkString str;
|
|
|
|
procs[i](&orig, bounds, &str);
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
canvas->save();
|
|
|
|
for (int j = 0; j < 13; ++j) {
|
|
|
|
strokePaint.setStrokeWidth(SK_Scalar1 * j * j);
|
|
|
|
canvas->drawPath(orig, strokePaint);
|
|
|
|
canvas->drawPath(orig, origPaint);
|
|
|
|
SkPath fill;
|
|
|
|
strokePaint.getFillPath(orig, &fill);
|
|
|
|
canvas->drawPath(fill, fillPaint);
|
|
|
|
canvas->translate(dx + strokePaint.getStrokeWidth(), 0);
|
|
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
canvas->translate(0, dy);
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2012-06-05 16:14:23 +00:00
|
|
|
private:
|
|
|
|
typedef skiagm::GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static skiagm::GM* F0(void*) { return new StrokesGM; }
|
|
|
|
static skiagm::GM* F1(void*) { return new Strokes2GM; }
|
|
|
|
static skiagm::GM* F2(void*) { return new Strokes3GM; }
|
|
|
|
|
|
|
|
static skiagm::GMRegistry R0(F0);
|
|
|
|
static skiagm::GMRegistry R1(F1);
|
|
|
|
static skiagm::GMRegistry R2(F2);
|