ab244f045a
This reverts commit9d5f66d9c2
. Reason for revert: Leon landed Android fixes. Original change's description: > Revert "Reland: Remove SkLights include from SkCanvas.h" > > This reverts commitfed00319c9
. > > Reason for revert: breaking the Android roll. > > Original change's description: > > Reland: Remove SkLights include from SkCanvas.h > > > > SkLights.h pulls in a bunch of other headers and is not needed (fwdecl > > works fine). > > > > Change-Id: I3ed97cd7861e51dcb7cfa7950a97b420dbc6fbfb > > TBR=reed@google.com > > Reviewed-on: https://skia-review.googlesource.com/15143 > > Commit-Queue: Florin Malita <fmalita@chromium.org> > > Reviewed-by: Florin Malita <fmalita@chromium.org> > > > > TBR=fmalita@chromium.org,reed@google.com > NOPRESUBMIT=true > NOTREECHECKS=true > NOTRY=true > > Change-Id: I3b0e69f1d04d160f16a5567b09982d35cc9ca84e > Reviewed-on: https://skia-review.googlesource.com/15195 > Reviewed-by: Florin Malita <fmalita@chromium.org> > Commit-Queue: Florin Malita <fmalita@chromium.org> > TBR=msarett@google.com,reviews@skia.org,fmalita@chromium.org,reed@google.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true Change-Id: I0a1c2f9df61f16987ab72dfb4f3a205fbcc37667 Reviewed-on: https://skia-review.googlesource.com/15229 Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Florin Malita <fmalita@chromium.org>
87 lines
2.7 KiB
C++
87 lines
2.7 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "Benchmark.h"
|
|
#include "SkBitmap.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkMagnifierImageFilter.h"
|
|
#include "SkRandom.h"
|
|
|
|
#define FILTER_WIDTH_SMALL 32
|
|
#define FILTER_HEIGHT_SMALL 32
|
|
#define FILTER_WIDTH_LARGE 256
|
|
#define FILTER_HEIGHT_LARGE 256
|
|
|
|
class MagnifierBench : public Benchmark {
|
|
public:
|
|
MagnifierBench(bool small) :
|
|
fIsSmall(small), fInitialized(false) {
|
|
}
|
|
|
|
protected:
|
|
const char* onGetName() override {
|
|
return fIsSmall ? "magnifier_small" : "magnifier_large";
|
|
}
|
|
|
|
void onDelayedSetup() override {
|
|
if (!fInitialized) {
|
|
make_checkerboard();
|
|
fInitialized = true;
|
|
}
|
|
}
|
|
|
|
void onDraw(int loops, SkCanvas* canvas) override {
|
|
const int w = fIsSmall ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
|
|
const int h = fIsSmall ? FILTER_HEIGHT_SMALL : FILTER_HEIGHT_LARGE;
|
|
SkPaint paint;
|
|
paint.setImageFilter(
|
|
SkMagnifierImageFilter::Make(
|
|
SkRect::MakeXYWH(SkIntToScalar(w / 4),
|
|
SkIntToScalar(h / 4),
|
|
SkIntToScalar(w / 2),
|
|
SkIntToScalar(h / 2)), 100, nullptr));
|
|
|
|
for (int i = 0; i < loops; i++) {
|
|
canvas->drawBitmap(fCheckerboard, 0, 0, &paint);
|
|
}
|
|
}
|
|
|
|
private:
|
|
void make_checkerboard() {
|
|
const int w = fIsSmall ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
|
|
const int h = fIsSmall ? FILTER_HEIGHT_LARGE : FILTER_HEIGHT_LARGE;
|
|
fCheckerboard.allocN32Pixels(w, h);
|
|
SkCanvas canvas(fCheckerboard);
|
|
canvas.clear(0x00000000);
|
|
SkPaint darkPaint;
|
|
darkPaint.setColor(0xFF804020);
|
|
SkPaint lightPaint;
|
|
lightPaint.setColor(0xFF244484);
|
|
for (int y = 0; y < h; y += 16) {
|
|
for (int x = 0; x < w; x += 16) {
|
|
canvas.save();
|
|
canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
|
|
canvas.drawRect(SkRect::MakeXYWH(0, 0, 8, 8), darkPaint);
|
|
canvas.drawRect(SkRect::MakeXYWH(8, 0, 8, 8), lightPaint);
|
|
canvas.drawRect(SkRect::MakeXYWH(0, 8, 8, 8), lightPaint);
|
|
canvas.drawRect(SkRect::MakeXYWH(8, 8, 8, 8), darkPaint);
|
|
canvas.restore();
|
|
}
|
|
}
|
|
}
|
|
|
|
bool fIsSmall;
|
|
bool fInitialized;
|
|
SkBitmap fCheckerboard;
|
|
typedef Benchmark INHERITED;
|
|
};
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_BENCH( return new MagnifierBench(true); )
|
|
DEF_BENCH( return new MagnifierBench(false); )
|