2014-02-05 17:51:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 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 "SkBlurImageFilter.h"
|
|
|
|
#include "SkRandom.h"
|
|
|
|
|
|
|
|
#define WIDTH 640
|
|
|
|
#define HEIGHT 480
|
|
|
|
|
|
|
|
namespace skiagm {
|
|
|
|
|
|
|
|
class ImageBlurTiledGM : public GM {
|
|
|
|
public:
|
|
|
|
ImageBlurTiledGM(SkScalar sigmaX, SkScalar sigmaY)
|
|
|
|
: fSigmaX(sigmaX), fSigmaY(sigmaY) {
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual SkString onShortName() {
|
|
|
|
return SkString("imageblurtiled");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual SkISize onISize() {
|
2014-06-10 06:59:03 +00:00
|
|
|
return SkISize::Make(WIDTH, HEIGHT);
|
2014-02-05 17:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void onDraw(SkCanvas* canvas) {
|
|
|
|
SkPaint paint;
|
2014-03-10 10:51:58 +00:00
|
|
|
paint.setImageFilter(SkBlurImageFilter::Create(fSigmaX, fSigmaY))->unref();
|
2014-02-05 17:51:22 +00:00
|
|
|
const SkScalar tile_size = SkIntToScalar(128);
|
|
|
|
SkRect bounds;
|
2014-04-10 21:15:30 +00:00
|
|
|
if (!canvas->getClipBounds(&bounds)) {
|
|
|
|
bounds.setEmpty();
|
|
|
|
}
|
2014-02-05 17:51:22 +00:00
|
|
|
for (SkScalar y = bounds.top(); y < bounds.bottom(); y += tile_size) {
|
|
|
|
for (SkScalar x = bounds.left(); x < bounds.right(); x += tile_size) {
|
|
|
|
canvas->save();
|
|
|
|
canvas->clipRect(SkRect::MakeXYWH(x, y, tile_size, tile_size));
|
|
|
|
canvas->saveLayer(NULL, &paint);
|
|
|
|
const char* str[] = {
|
|
|
|
"The quick",
|
|
|
|
"brown fox",
|
|
|
|
"jumped over",
|
|
|
|
"the lazy dog.",
|
|
|
|
};
|
|
|
|
SkPaint textPaint;
|
|
|
|
textPaint.setAntiAlias(true);
|
2014-07-31 12:58:44 +00:00
|
|
|
sk_tool_utils::set_portable_typeface(&textPaint);
|
2014-02-05 17:51:22 +00:00
|
|
|
textPaint.setTextSize(SkIntToScalar(100));
|
|
|
|
int posY = 0;
|
|
|
|
for (unsigned i = 0; i < SK_ARRAY_COUNT(str); i++) {
|
|
|
|
posY += 100;
|
|
|
|
canvas->drawText(str[i], strlen(str[i]), SkIntToScalar(0),
|
|
|
|
SkIntToScalar(posY), textPaint);
|
|
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
canvas->restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkScalar fSigmaX;
|
|
|
|
SkScalar fSigmaY;
|
|
|
|
|
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static GM* MyFactory1(void*) { return new ImageBlurTiledGM(3.0f, 3.0f); }
|
|
|
|
static GMRegistry reg1(MyFactory1);
|
|
|
|
|
|
|
|
}
|