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
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkBlendMode.h"
|
|
|
|
#include "include/core/SkBlurTypes.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "include/core/SkDrawLooper.h"
|
|
|
|
#include "include/core/SkFont.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkMaskFilter.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkPoint.h"
|
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkSize.h"
|
|
|
|
#include "include/core/SkString.h"
|
|
|
|
#include "include/core/SkTypeface.h"
|
|
|
|
#include "include/core/SkTypes.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/effects/SkLayerDrawLooper.h"
|
|
|
|
#include "src/core/SkBlurMask.h"
|
|
|
|
#include "tools/ToolUtils.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) {
|
2018-08-16 14:17:03 +00:00
|
|
|
this->setBGColor(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);
|
2012-07-31 14:32:38 +00:00
|
|
|
paint.setLooper(fLooper);
|
|
|
|
|
2019-03-20 16:12:10 +00:00
|
|
|
SkFont font(ToolUtils::create_portable_typeface(), 72);
|
2019-01-07 14:31:58 +00:00
|
|
|
|
2017-02-22 18:21:42 +00:00
|
|
|
canvas->drawCircle(50, 50, 30, paint);
|
|
|
|
canvas->drawRect({ 150, 50, 200, 100 }, paint);
|
2019-01-07 14:31:58 +00:00
|
|
|
canvas->drawString("Looper", 230, 100, font, paint);
|
2012-07-31 14:32:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2016-09-01 18:24:54 +00:00
|
|
|
constexpr struct {
|
2008-12-17 15:59:43 +00:00
|
|
|
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;
|
2016-11-03 18:45:31 +00:00
|
|
|
info.fColorMode = SkBlendMode::kSrc;
|
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) {
|
2018-03-14 17:01:17 +00:00
|
|
|
paint->setMaskFilter(SkMaskFilter::MakeBlur(kNormal_SkBlurStyle,
|
2016-04-04 17:02:58 +00:00
|
|
|
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; )
|