7fde8e1728
This almost gets gms to be iwyu clean. The last bit is around gm.cpp and the tracing framework and its use of atomic. Will also need a way of keeping things from regressing, which is difficult due to needing to do this outside-in. Change-Id: I1393531e99da8b0f1a29f55c53c86d53f459af7d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/211593 Reviewed-by: Herb Derby <herb@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
72 lines
2.5 KiB
C++
72 lines
2.5 KiB
C++
/*
|
|
* 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/gm.h"
|
|
#include "include/core/SkBitmap.h"
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkColor.h"
|
|
#include "include/core/SkFilterQuality.h"
|
|
#include "include/core/SkImageFilter.h"
|
|
#include "include/core/SkMatrix.h"
|
|
#include "include/core/SkPaint.h"
|
|
#include "include/core/SkRect.h"
|
|
#include "include/core/SkScalar.h"
|
|
|
|
static void draw(SkCanvas* canvas, const SkRect& rect, const SkBitmap& bitmap,
|
|
const SkMatrix& matrix, SkFilterQuality filter) {
|
|
SkPaint paint;
|
|
paint.setImageFilter(SkImageFilter::MakeMatrixFilter(matrix, filter, nullptr));
|
|
canvas->saveLayer(&rect, &paint);
|
|
canvas->drawBitmap(bitmap, 0, 0);
|
|
canvas->restore();
|
|
}
|
|
|
|
static void make_checkerboard(SkBitmap* bitmap) {
|
|
bitmap->allocN32Pixels(64, 64);
|
|
SkCanvas canvas(*bitmap);
|
|
SkPaint darkPaint;
|
|
darkPaint.setColor(0xFF404040);
|
|
SkPaint lightPaint;
|
|
lightPaint.setColor(0xFFA0A0A0);
|
|
for (int y = 0; y < 64; y += 32) {
|
|
for (int x = 0; x < 64; x += 32) {
|
|
canvas.save();
|
|
canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
|
|
canvas.drawRect(SkRect::MakeXYWH(0, 0, 16, 16), darkPaint);
|
|
canvas.drawRect(SkRect::MakeXYWH(16, 0, 16, 16), lightPaint);
|
|
canvas.drawRect(SkRect::MakeXYWH(0, 16, 16, 16), lightPaint);
|
|
canvas.drawRect(SkRect::MakeXYWH(16, 16, 16, 16), darkPaint);
|
|
canvas.restore();
|
|
}
|
|
}
|
|
}
|
|
|
|
DEF_SIMPLE_GM_BG(matriximagefilter, canvas, 420, 100, SK_ColorBLACK) {
|
|
SkMatrix matrix;
|
|
SkScalar margin = SkIntToScalar(10);
|
|
matrix.setSkew(SkDoubleToScalar(0.5), SkDoubleToScalar(0.2));
|
|
SkBitmap checkerboard;
|
|
make_checkerboard(&checkerboard);
|
|
|
|
SkRect srcRect = SkRect::MakeWH(96, 96);
|
|
|
|
canvas->translate(margin, margin);
|
|
draw(canvas, srcRect, checkerboard, matrix, kNone_SkFilterQuality);
|
|
|
|
canvas->translate(srcRect.width() + margin, 0);
|
|
draw(canvas, srcRect, checkerboard, matrix, kLow_SkFilterQuality);
|
|
|
|
#if 0
|
|
// This may be causing Mac 10.6 to barf.
|
|
canvas->translate(srcRect.width() + margin, 0);
|
|
draw(canvas, srcRect, checkerboard, matrix, kMedium_SkFilterQuality);
|
|
|
|
canvas->translate(srcRect.width() + margin, 0);
|
|
draw(canvas, srcRect, checkerboard, matrix, kHigh_SkFilterQuality);
|
|
#endif
|
|
}
|