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.
|
|
|
|
*/
|
2012-07-31 14:32:38 +00:00
|
|
|
|
|
|
|
#include "gm.h"
|
2013-09-06 14:16:12 +00:00
|
|
|
#include "SkBlurMask.h"
|
|
|
|
#include "SkBlurMaskFilter.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkGraphics.h"
|
|
|
|
#include "SkLayerDrawLooper.h"
|
2013-09-06 14:16:12 +00:00
|
|
|
#include "SkRandom.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
#define WIDTH 200
|
|
|
|
#define HEIGHT 200
|
|
|
|
|
2012-07-31 14:32:38 +00:00
|
|
|
class DrawLooperGM : public skiagm::GM {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
2015-08-27 14:41:13 +00:00
|
|
|
DrawLooperGM() : fLooper(nullptr) {
|
2015-06-15 13:51:08 +00:00
|
|
|
this->setBGColor(sk_tool_utils::color_to_565(0xFFDDDDDD));
|
2012-07-31 14:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-03-26 01:17:31 +00:00
|
|
|
virtual SkISize onISize() override {
|
2012-07-31 14:32:38 +00:00
|
|
|
return SkISize::Make(520, 160);
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkString onShortName() override {
|
2012-07-31 14:32:38 +00:00
|
|
|
return SkString("drawlooper");
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2012-07-31 14:32:38 +00:00
|
|
|
this->init();
|
|
|
|
|
|
|
|
SkPaint paint;
|
2014-02-27 14:27:44 +00:00
|
|
|
paint.setAntiAlias(true);
|
2015-07-24 19:09:25 +00:00
|
|
|
sk_tool_utils::set_portable_typeface(&paint);
|
2012-07-31 14:32:38 +00:00
|
|
|
paint.setTextSize(SkIntToScalar(72));
|
|
|
|
paint.setLooper(fLooper);
|
|
|
|
|
|
|
|
canvas->drawCircle(SkIntToScalar(50), SkIntToScalar(50),
|
|
|
|
SkIntToScalar(30), paint);
|
|
|
|
|
|
|
|
canvas->drawRectCoords(SkIntToScalar(150), SkIntToScalar(50),
|
|
|
|
SkIntToScalar(200), SkIntToScalar(100), paint);
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2012-07-31 14:32:38 +00:00
|
|
|
canvas->drawText("Looper", 6, SkIntToScalar(230), SkIntToScalar(100),
|
|
|
|
paint);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2016-03-21 20:25:16 +00:00
|
|
|
sk_sp<SkDrawLooper> fLooper;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2012-07-31 14:32:38 +00:00
|
|
|
void init() {
|
|
|
|
if (fLooper) return;
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
static const struct {
|
|
|
|
SkColor fColor;
|
|
|
|
SkPaint::Style fStyle;
|
|
|
|
SkScalar fWidth;
|
|
|
|
SkScalar fOffset;
|
2013-09-06 14:16:12 +00:00
|
|
|
SkScalar fBlur;
|
2008-12-17 15:59:43 +00:00
|
|
|
} gParams[] = {
|
|
|
|
{ SK_ColorWHITE, SkPaint::kStroke_Style, SkIntToScalar(1)*3/4, 0, 0 },
|
|
|
|
{ SK_ColorRED, SkPaint::kStroke_Style, SkIntToScalar(4), 0, 0 },
|
|
|
|
{ SK_ColorBLUE, SkPaint::kFill_Style, 0, 0, 0 },
|
2013-09-06 14:16:12 +00:00
|
|
|
{ 0x88000000, SkPaint::kFill_Style, 0, SkIntToScalar(10), SkIntToScalar(3) }
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2014-04-15 15:48:36 +00:00
|
|
|
SkLayerDrawLooper::Builder looperBuilder;
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2011-04-14 01:22:45 +00:00
|
|
|
SkLayerDrawLooper::LayerInfo info;
|
|
|
|
info.fPaintBits = SkLayerDrawLooper::kStyle_Bit | SkLayerDrawLooper::kMaskFilter_Bit;
|
|
|
|
info.fColorMode = SkXfermode::kSrc_Mode;
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2011-05-19 19:58:58 +00:00
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(gParams); i++) {
|
2011-04-14 01:22:45 +00:00
|
|
|
info.fOffset.set(gParams[i].fOffset, gParams[i].fOffset);
|
2014-04-15 15:48:36 +00:00
|
|
|
SkPaint* paint = looperBuilder.addLayer(info);
|
2008-12-17 15:59:43 +00:00
|
|
|
paint->setColor(gParams[i].fColor);
|
|
|
|
paint->setStyle(gParams[i].fStyle);
|
|
|
|
paint->setStrokeWidth(gParams[i].fWidth);
|
|
|
|
if (gParams[i].fBlur > 0) {
|
2016-04-04 17:02:58 +00:00
|
|
|
paint->setMaskFilter(SkBlurMaskFilter::Make(kNormal_SkBlurStyle,
|
|
|
|
SkBlurMask::ConvertRadiusToSigma(gParams[i].fBlur)));
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-21 20:25:16 +00:00
|
|
|
fLooper = looperBuilder.detach();
|
2008-12-17 15:59:43 +00:00
|
|
|
}
|
2011-02-07 15:30:46 +00:00
|
|
|
|
2012-07-31 14:32:38 +00:00
|
|
|
typedef GM INHERITED;
|
2008-12-17 15:59:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2015-12-10 21:31:59 +00:00
|
|
|
DEF_GM( return new DrawLooperGM; )
|