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"
|
2008-12-17 15:59:43 +00:00
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkGraphics.h"
|
|
|
|
#include "SkRandom.h"
|
|
|
|
#include "SkLayerDrawLooper.h"
|
|
|
|
#include "SkBlurMaskFilter.h"
|
|
|
|
|
|
|
|
#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:
|
2012-08-23 18:14:13 +00:00
|
|
|
DrawLooperGM() : fLooper(NULL) {
|
2012-07-31 14:32:38 +00:00
|
|
|
this->setBGColor(0xFFDDDDDD);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~DrawLooperGM() {
|
|
|
|
SkSafeUnref(fLooper);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual SkISize onISize() {
|
|
|
|
return SkISize::Make(520, 160);
|
|
|
|
}
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2012-07-31 14:32:38 +00:00
|
|
|
virtual SkString onShortName() SK_OVERRIDE {
|
|
|
|
return SkString("drawlooper");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
|
|
|
this->init();
|
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
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:
|
2008-12-17 15:59:43 +00:00
|
|
|
SkLayerDrawLooper* fLooper;
|
|
|
|
|
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;
|
|
|
|
int fBlur;
|
|
|
|
} 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 },
|
|
|
|
{ 0x88000000, SkPaint::kFill_Style, 0, SkIntToScalar(10), 3 }
|
|
|
|
};
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
fLooper = new SkLayerDrawLooper;
|
2012-08-23 18:14:13 +00:00
|
|
|
|
2011-04-14 01:22:45 +00:00
|
|
|
SkLayerDrawLooper::LayerInfo info;
|
|
|
|
info.fFlagsMask = SkPaint::kAntiAlias_Flag;
|
|
|
|
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);
|
|
|
|
SkPaint* paint = fLooper->addLayer(info);
|
2008-12-17 15:59:43 +00:00
|
|
|
paint->setAntiAlias(true);
|
|
|
|
paint->setColor(gParams[i].fColor);
|
|
|
|
paint->setStyle(gParams[i].fStyle);
|
|
|
|
paint->setStrokeWidth(gParams[i].fWidth);
|
|
|
|
if (gParams[i].fBlur > 0) {
|
|
|
|
SkMaskFilter* mf = SkBlurMaskFilter::Create(SkIntToScalar(gParams[i].fBlur),
|
|
|
|
SkBlurMaskFilter::kNormal_BlurStyle);
|
|
|
|
paint->setMaskFilter(mf)->unref();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-07-31 14:32:38 +00:00
|
|
|
static skiagm::GM* MyFactory(void*) { return new DrawLooperGM; }
|
|
|
|
static skiagm::GMRegistry reg(MyFactory);
|