skia2/gm/simplerect.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

57 lines
1.4 KiB
C++

/*
* Copyright 2016 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 "SkBlurMask.h"
#include "SkBlurMaskFilter.h"
#include "SkPath.h"
class SimpleRectGM : public skiagm::GM {
public:
SimpleRectGM() {}
protected:
SkString onShortName() override {
SkString name;
name.printf("simplerect");
return name;
}
SkISize onISize() override {
return SkISize::Make(800, 800);
}
void onDraw(SkCanvas* canvas) override {
canvas->translate(1, 1); // want to exercise non-identity ctm performance
const SkScalar min = -20;
const SkScalar max = 800;
const SkScalar size = 20;
SkRandom rand;
SkPaint paint;
for (int i = 0; i < 10000; i++) {
paint.setColor(sk_tool_utils::color_to_565(rand.nextU() | (0xFF << 24)));
SkScalar x = rand.nextRangeScalar(min, max);
SkScalar y = rand.nextRangeScalar(min, max);
SkScalar w = rand.nextRangeScalar(0, size);
SkScalar h = rand.nextRangeScalar(0, size);
canvas->drawRect(SkRect::MakeXYWH(x, y, w, h), paint);
}
}
bool onAnimate(const SkAnimTimer& timer) override {
return true;
}
private:
typedef GM INHERITED;
};
DEF_GM(return new SimpleRectGM;)