2011-11-04 15:47:41 +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-05-01 21:28:53 +00:00
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "gm/gm.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkFont.h"
|
2019-05-01 21:28:53 +00:00
|
|
|
#include "include/core/SkFontTypes.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"
|
|
|
|
|
|
|
|
#include <string.h>
|
2011-11-04 15:47:41 +00:00
|
|
|
|
|
|
|
namespace skiagm {
|
|
|
|
|
|
|
|
class FontScalerGM : public GM {
|
|
|
|
public:
|
|
|
|
FontScalerGM() {
|
|
|
|
this->setBGColor(0xFFFFFFFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-04-30 13:20:45 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkString onShortName() override {
|
2019-03-08 17:11:55 +00:00
|
|
|
return SkString("fontscaler");
|
2011-11-04 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkISize onISize() override {
|
2014-06-10 06:59:03 +00:00
|
|
|
return SkISize::Make(1450, 750);
|
2011-11-04 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2018-12-15 18:45:33 +00:00
|
|
|
SkFont font;
|
|
|
|
font.setEdging(SkFont::Edging::kSubpixelAntiAlias);
|
2011-11-04 15:47:41 +00:00
|
|
|
//With freetype the default (normal hinting) can be really ugly.
|
|
|
|
//Most distros now set slight (vertical hinting only) in any event.
|
2019-05-07 20:50:29 +00:00
|
|
|
font.setHinting(SkFontHinting::kSlight);
|
2011-11-04 15:47:41 +00:00
|
|
|
|
|
|
|
const char* text = "Hamburgefons ooo mmm";
|
|
|
|
const size_t textLen = strlen(text);
|
|
|
|
|
|
|
|
for (int j = 0; j < 2; ++j) {
|
2013-09-09 16:19:40 +00:00
|
|
|
// This used to do 6 iterations but it causes the N4 to crash in the MSAA4 config.
|
|
|
|
for (int i = 0; i < 5; ++i) {
|
2019-08-24 23:39:13 +00:00
|
|
|
SkScalar x = 10;
|
|
|
|
SkScalar y = 20;
|
2011-11-04 15:47:41 +00:00
|
|
|
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
canvas->translate(SkIntToScalar(50 + i * 230),
|
|
|
|
SkIntToScalar(20));
|
2016-07-12 22:01:19 +00:00
|
|
|
canvas->rotate(SkIntToScalar(i * 5), x, y * 10);
|
2011-11-04 15:47:41 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
SkPaint p;
|
|
|
|
p.setAntiAlias(true);
|
|
|
|
SkRect r;
|
2019-08-24 23:39:13 +00:00
|
|
|
r.setLTRB(x - 3, 15, x - 1, 280);
|
2011-11-04 15:47:41 +00:00
|
|
|
canvas->drawRect(r, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int ps = 6; ps <= 22; ps++) {
|
2018-12-15 18:45:33 +00:00
|
|
|
font.setSize(SkIntToScalar(ps));
|
2019-05-07 19:38:46 +00:00
|
|
|
canvas->drawSimpleText(text, textLen, SkTextEncoding::kUTF8, x, y, font, SkPaint());
|
2018-12-15 18:45:33 +00:00
|
|
|
y += font.getMetrics(nullptr);
|
2011-11-04 15:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
2012-01-05 18:10:48 +00:00
|
|
|
canvas->translate(0, SkIntToScalar(360));
|
2018-12-15 18:45:33 +00:00
|
|
|
font.setSubpixel(true);
|
2019-04-18 20:37:45 +00:00
|
|
|
font.setLinearMetrics(true);
|
2019-08-27 20:20:39 +00:00
|
|
|
font.setBaselineSnap(false);
|
2011-11-04 15:47:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2020-09-03 02:42:33 +00:00
|
|
|
using INHERITED = GM;
|
2011-11-04 15:47:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2012-06-26 17:23:52 +00:00
|
|
|
|
2019-01-23 15:22:01 +00:00
|
|
|
DEF_GM( return new FontScalerGM; )
|
2012-06-26 17:23:52 +00:00
|
|
|
|
2020-08-06 18:11:56 +00:00
|
|
|
} // namespace skiagm
|