skia2/gm/imageblur2.cpp
Mike Klein 33d2055e59 GM: some header cleanup
gm.h includes sk_tool_utils.h but does not use it.

The bulk of this CL makes each gm that uses sk_tool_utils include it.

sk_tool_utils.h also provided SkRandom and SkTDArray,
so a couple GMs add those headers too.

Change-Id: Ieb2a7c542f0ca89c3223f744fc11b0ff37af36c1
Reviewed-on: https://skia-review.googlesource.com/10014
Commit-Queue: Mike Klein <mtklein@chromium.org>
Reviewed-by: Herb Derby <herb@google.com>
2017-03-22 18:11:49 +00:00

95 lines
2.5 KiB
C++

/*
* Copyright 2011 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 "sk_tool_utils.h"
#include "SkBlurImageFilter.h"
#include "SkRandom.h"
// TODO deprecate imageblur
#define WIDTH 500
#define HEIGHT 500
constexpr float kBlurSigmas[] = {
0.0, 0.3f, 0.5f, 2.0f, 32.0f, 80.0f };
const char* kTestStrings[] = {
"The quick`~",
"brown fox[]",
"jumped over",
"the lazy@#$",
"dog.{}!%^&",
"*()+=-\\'\"/",
};
namespace skiagm {
class BlurImageFilter : public GM {
public:
BlurImageFilter() {
this->setBGColor(0xFFFFFFFF);
fName.printf("imageblur2");
}
protected:
SkString onShortName() override {
return fName;
}
SkISize onISize() override {
return SkISize::Make(WIDTH, HEIGHT);
}
void onDraw(SkCanvas* canvas) override {
const int sigmaCount = SK_ARRAY_COUNT(kBlurSigmas);
const int testStringCount = SK_ARRAY_COUNT(kTestStrings);
SkScalar dx = WIDTH / sigmaCount;
SkScalar dy = HEIGHT / sigmaCount;
const SkScalar textSize = 12;
for (int x = 0; x < sigmaCount; x++) {
SkScalar sigmaX = kBlurSigmas[x];
for (int y = 0; y < sigmaCount; y++) {
SkScalar sigmaY = kBlurSigmas[y];
SkPaint paint;
paint.setImageFilter(SkBlurImageFilter::Make(sigmaX, sigmaY, nullptr));
canvas->saveLayer(nullptr, &paint);
SkRandom rand;
SkPaint textPaint;
textPaint.setAntiAlias(false);
textPaint.setColor(sk_tool_utils::color_to_565(rand.nextBits(24) | 0xFF000000));
sk_tool_utils::set_portable_typeface(&textPaint);
textPaint.setTextSize(textSize);
for (int i = 0; i < testStringCount; i++) {
canvas->drawText(kTestStrings[i],
strlen(kTestStrings[i]),
SkIntToScalar(x * dx),
SkIntToScalar(y * dy + textSize * i + textSize),
textPaint);
}
canvas->restore();
}
}
}
private:
SkString fName;
typedef GM INHERITED;
};
//////////////////////////////////////////////////////////////////////////////
DEF_GM(return new BlurImageFilter;)
}