2013-05-28 15:29:25 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkBitmap.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkColor.h"
|
|
|
|
#include "include/core/SkFilterQuality.h"
|
|
|
|
#include "include/core/SkFont.h"
|
|
|
|
#include "include/core/SkFontStyle.h"
|
|
|
|
#include "include/core/SkMatrix.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkRect.h"
|
|
|
|
#include "include/core/SkScalar.h"
|
|
|
|
#include "include/core/SkSize.h"
|
|
|
|
#include "include/core/SkString.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkTypeface.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/Resources.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "tools/ToolUtils.h"
|
2013-05-28 16:39:52 +00:00
|
|
|
|
2019-01-07 16:01:57 +00:00
|
|
|
static void setTypeface(SkFont* font, const char name[], SkFontStyle style) {
|
2019-03-20 16:12:10 +00:00
|
|
|
font->setTypeface(ToolUtils::create_portable_typeface(name, style));
|
2013-05-28 16:39:52 +00:00
|
|
|
}
|
|
|
|
|
2013-05-28 15:29:25 +00:00
|
|
|
static SkSize computeSize(const SkBitmap& bm, const SkMatrix& mat) {
|
2013-05-28 15:42:21 +00:00
|
|
|
SkRect bounds = SkRect::MakeWH(SkIntToScalar(bm.width()),
|
|
|
|
SkIntToScalar(bm.height()));
|
2013-05-28 15:29:25 +00:00
|
|
|
mat.mapRect(&bounds);
|
2013-05-28 15:42:21 +00:00
|
|
|
return SkSize::Make(bounds.width(), bounds.height());
|
2013-05-28 15:29:25 +00:00
|
|
|
}
|
|
|
|
|
2014-12-10 17:02:16 +00:00
|
|
|
static void draw_cell(SkCanvas* canvas, const SkBitmap& bm, const SkMatrix& mat, SkScalar dx,
|
2015-03-16 17:08:34 +00:00
|
|
|
SkFilterQuality lvl) {
|
2013-05-28 15:29:25 +00:00
|
|
|
SkPaint paint;
|
2015-03-16 17:08:34 +00:00
|
|
|
paint.setFilterQuality(lvl);
|
2013-05-28 15:29:25 +00:00
|
|
|
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
2013-12-16 21:02:29 +00:00
|
|
|
canvas->translate(dx, 0);
|
2014-12-10 17:02:16 +00:00
|
|
|
canvas->concat(mat);
|
|
|
|
canvas->drawBitmap(bm, 0, 0, &paint);
|
|
|
|
}
|
2013-12-16 21:02:29 +00:00
|
|
|
|
2014-12-10 17:02:16 +00:00
|
|
|
static void draw_row(SkCanvas* canvas, const SkBitmap& bm, const SkMatrix& mat, SkScalar dx) {
|
2015-03-16 17:08:34 +00:00
|
|
|
draw_cell(canvas, bm, mat, 0 * dx, kNone_SkFilterQuality);
|
|
|
|
draw_cell(canvas, bm, mat, 1 * dx, kLow_SkFilterQuality);
|
|
|
|
draw_cell(canvas, bm, mat, 2 * dx, kMedium_SkFilterQuality);
|
|
|
|
draw_cell(canvas, bm, mat, 3 * dx, kHigh_SkFilterQuality);
|
2013-05-28 15:29:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class FilterBitmapGM : public skiagm::GM {
|
2015-03-26 01:17:31 +00:00
|
|
|
void onOnceBeforeDraw() override {
|
2019-07-18 17:35:49 +00:00
|
|
|
this->setBGColor(0xFFDDDDDD);
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2013-12-16 21:02:29 +00:00
|
|
|
this->makeBitmap();
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2013-05-28 15:29:25 +00:00
|
|
|
SkScalar cx = SkScalarHalf(fBM.width());
|
|
|
|
SkScalar cy = SkScalarHalf(fBM.height());
|
2013-12-16 21:02:29 +00:00
|
|
|
SkScalar scale = this->getScale();
|
2013-05-28 15:29:25 +00:00
|
|
|
|
2013-12-16 21:02:29 +00:00
|
|
|
// these two matrices use a scale factor configured by the subclass
|
2013-05-28 15:29:25 +00:00
|
|
|
fMatrix[0].setScale(scale, scale);
|
|
|
|
fMatrix[1].setRotate(30, cx, cy); fMatrix[1].postScale(scale, scale);
|
2013-12-16 21:02:29 +00:00
|
|
|
|
|
|
|
// up/down scaling mix
|
|
|
|
fMatrix[2].setScale(0.7f, 1.05f);
|
2013-05-28 15:29:25 +00:00
|
|
|
}
|
|
|
|
|
2019-07-18 17:35:49 +00:00
|
|
|
protected:
|
2013-05-28 15:29:25 +00:00
|
|
|
SkBitmap fBM;
|
2013-12-16 21:02:29 +00:00
|
|
|
SkMatrix fMatrix[3];
|
2013-05-28 15:29:25 +00:00
|
|
|
|
2019-07-18 17:35:49 +00:00
|
|
|
SkISize onISize() override { return SkISize::Make(1024, 768); }
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2013-12-16 21:02:29 +00:00
|
|
|
virtual void makeBitmap() = 0;
|
|
|
|
virtual SkScalar getScale() = 0;
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2013-05-28 15:29:25 +00:00
|
|
|
|
|
|
|
canvas->translate(10, 10);
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(fMatrix); ++i) {
|
|
|
|
SkSize size = computeSize(fBM, fMatrix[i]);
|
|
|
|
size.fWidth += 20;
|
|
|
|
size.fHeight += 20;
|
|
|
|
|
2013-12-16 21:02:29 +00:00
|
|
|
draw_row(canvas, fBM, fMatrix[i], size.fWidth);
|
2013-05-28 15:29:25 +00:00
|
|
|
canvas->translate(0, size.fHeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-05-31 12:50:39 +00:00
|
|
|
class FilterBitmapTextGM: public FilterBitmapGM {
|
2019-07-18 17:35:49 +00:00
|
|
|
public:
|
|
|
|
FilterBitmapTextGM(float textSize) : fTextSize(textSize) {}
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2019-07-18 17:35:49 +00:00
|
|
|
private:
|
|
|
|
SkString onShortName() override {
|
|
|
|
return SkStringPrintf("filterbitmap_text_%.2fpt", fTextSize);
|
|
|
|
}
|
|
|
|
const float fTextSize;
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkScalar getScale() override {
|
2013-05-31 12:50:39 +00:00
|
|
|
return 32.f/fTextSize;
|
|
|
|
}
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void makeBitmap() override {
|
2014-01-25 16:46:20 +00:00
|
|
|
fBM.allocN32Pixels(int(fTextSize * 8), int(fTextSize * 6));
|
2013-05-31 12:50:39 +00:00
|
|
|
SkCanvas canvas(fBM);
|
|
|
|
canvas.drawColor(SK_ColorWHITE);
|
|
|
|
|
|
|
|
SkPaint paint;
|
2019-01-07 16:01:57 +00:00
|
|
|
SkFont font;
|
|
|
|
font.setSize(fTextSize);
|
|
|
|
font.setSubpixel(true);
|
|
|
|
|
|
|
|
setTypeface(&font, "serif", SkFontStyle::Normal());
|
|
|
|
canvas.drawString("Hamburgefons", fTextSize/2, 1.2f*fTextSize, font, paint);
|
|
|
|
setTypeface(&font, "serif", SkFontStyle::Bold());
|
|
|
|
canvas.drawString("Hamburgefons", fTextSize/2, 2.4f*fTextSize, font, paint);
|
|
|
|
setTypeface(&font, "serif", SkFontStyle::Italic());
|
|
|
|
canvas.drawString("Hamburgefons", fTextSize/2, 3.6f*fTextSize, font, paint);
|
|
|
|
setTypeface(&font, "serif", SkFontStyle::BoldItalic());
|
|
|
|
canvas.drawString("Hamburgefons", fTextSize/2, 4.8f*fTextSize, font, paint);
|
2013-05-31 12:50:39 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class FilterBitmapCheckerboardGM: public FilterBitmapGM {
|
2019-07-18 17:35:49 +00:00
|
|
|
SkString onShortName() override {
|
|
|
|
return SkStringPrintf("filterbitmap_checkerboard_%d_%d%s",
|
|
|
|
fSize, fNumChecks, fConvertToG8 ? "_g8" : "");
|
|
|
|
}
|
2015-03-18 00:44:06 +00:00
|
|
|
public:
|
|
|
|
FilterBitmapCheckerboardGM(int size, int num_checks, bool convertToG8 = false)
|
2019-07-18 17:35:49 +00:00
|
|
|
: fSize(size), fNumChecks(num_checks), fConvertToG8(convertToG8) {}
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2019-07-18 17:35:49 +00:00
|
|
|
protected:
|
2013-05-31 12:50:39 +00:00
|
|
|
int fSize;
|
|
|
|
int fNumChecks;
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkScalar getScale() override {
|
2013-05-31 12:50:39 +00:00
|
|
|
return 192.f/fSize;
|
|
|
|
}
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void makeBitmap() override {
|
2014-01-25 16:46:20 +00:00
|
|
|
fBM.allocN32Pixels(fSize, fSize);
|
2013-05-31 12:50:39 +00:00
|
|
|
for (int y = 0; y < fSize; y ++) {
|
|
|
|
for (int x = 0; x < fSize; x ++) {
|
|
|
|
SkPMColor* s = fBM.getAddr32(x, y);
|
|
|
|
int cx = (x * fNumChecks) / fSize;
|
|
|
|
int cy = (y * fNumChecks) / fSize;
|
|
|
|
if ((cx+cy)%2) {
|
2013-06-01 07:01:39 +00:00
|
|
|
*s = 0xFFFFFFFF;
|
|
|
|
} else {
|
2013-05-31 12:50:39 +00:00
|
|
|
*s = 0xFF000000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-18 00:44:06 +00:00
|
|
|
if (fConvertToG8) {
|
|
|
|
SkBitmap tmp;
|
2019-03-20 16:12:10 +00:00
|
|
|
ToolUtils::copy_to_g8(&tmp, fBM);
|
2015-03-18 00:44:06 +00:00
|
|
|
fBM = tmp;
|
|
|
|
}
|
2013-05-31 12:50:39 +00:00
|
|
|
}
|
2015-03-18 00:44:06 +00:00
|
|
|
private:
|
|
|
|
const bool fConvertToG8;
|
|
|
|
typedef FilterBitmapGM INHERITED;
|
2013-05-31 12:50:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class FilterBitmapImageGM: public FilterBitmapGM {
|
2019-07-18 17:35:49 +00:00
|
|
|
const char* fFilename;
|
|
|
|
int fSize;
|
|
|
|
|
|
|
|
SkString onShortName() override {
|
|
|
|
return SkStringPrintf("filterbitmap_image_%s%s", fFilename, fConvertToG8 ? "_g8" : "");
|
|
|
|
}
|
|
|
|
|
2015-03-18 00:44:06 +00:00
|
|
|
public:
|
|
|
|
FilterBitmapImageGM(const char filename[], bool convertToG8 = false)
|
2019-07-18 17:35:49 +00:00
|
|
|
: fFilename(filename), fConvertToG8(convertToG8) {}
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2015-03-18 00:44:06 +00:00
|
|
|
protected:
|
2015-03-26 01:17:31 +00:00
|
|
|
SkScalar getScale() override {
|
2013-05-31 12:50:39 +00:00
|
|
|
return 192.f/fSize;
|
|
|
|
}
|
2013-06-01 07:01:39 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void makeBitmap() override {
|
2019-07-18 17:35:49 +00:00
|
|
|
SkString resource = SkStringPrintf("images/%s", fFilename);
|
2017-12-08 15:21:31 +00:00
|
|
|
if (!GetResourceAsBitmap(resource.c_str(), &fBM)) {
|
2016-03-18 19:13:47 +00:00
|
|
|
fBM.allocN32Pixels(1, 1);
|
|
|
|
fBM.eraseARGB(255, 255, 0 , 0); // red == bad
|
|
|
|
}
|
|
|
|
fSize = fBM.height();
|
|
|
|
|
|
|
|
if (fConvertToG8) {
|
|
|
|
SkBitmap tmp;
|
2019-03-20 16:12:10 +00:00
|
|
|
ToolUtils::copy_to_g8(&tmp, fBM);
|
2016-03-18 19:13:47 +00:00
|
|
|
fBM = tmp;
|
|
|
|
}
|
2013-05-31 12:50:39 +00:00
|
|
|
}
|
2015-03-18 00:44:06 +00:00
|
|
|
private:
|
|
|
|
const bool fConvertToG8;
|
|
|
|
typedef FilterBitmapGM INHERITED;
|
2013-05-31 12:50:39 +00:00
|
|
|
};
|
|
|
|
|
2013-05-28 15:29:25 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-05-31 12:50:39 +00:00
|
|
|
DEF_GM( return new FilterBitmapTextGM(3); )
|
|
|
|
DEF_GM( return new FilterBitmapTextGM(7); )
|
|
|
|
DEF_GM( return new FilterBitmapTextGM(10); )
|
|
|
|
DEF_GM( return new FilterBitmapCheckerboardGM(4,4); )
|
|
|
|
DEF_GM( return new FilterBitmapCheckerboardGM(32,32); )
|
2015-03-18 00:44:06 +00:00
|
|
|
DEF_GM( return new FilterBitmapCheckerboardGM(32,32, true); )
|
2013-05-31 12:50:39 +00:00
|
|
|
DEF_GM( return new FilterBitmapCheckerboardGM(32,8); )
|
|
|
|
DEF_GM( return new FilterBitmapCheckerboardGM(32,2); )
|
|
|
|
DEF_GM( return new FilterBitmapCheckerboardGM(192,192); )
|
|
|
|
DEF_GM( return new FilterBitmapImageGM("mandrill_16.png"); )
|
|
|
|
DEF_GM( return new FilterBitmapImageGM("mandrill_32.png"); )
|
|
|
|
DEF_GM( return new FilterBitmapImageGM("mandrill_64.png"); )
|
2015-03-18 00:44:06 +00:00
|
|
|
DEF_GM( return new FilterBitmapImageGM("mandrill_64.png", true); )
|
2013-05-31 12:50:39 +00:00
|
|
|
DEF_GM( return new FilterBitmapImageGM("mandrill_128.png"); )
|
|
|
|
DEF_GM( return new FilterBitmapImageGM("mandrill_256.png"); )
|
|
|
|
DEF_GM( return new FilterBitmapImageGM("mandrill_512.png"); )
|
2014-10-27 17:32:18 +00:00
|
|
|
DEF_GM( return new FilterBitmapImageGM("color_wheel.png"); )
|