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.
|
|
|
|
*/
|
|
|
|
#include "gm.h"
|
|
|
|
#include "SkTypeface.h"
|
|
|
|
|
|
|
|
namespace skiagm {
|
|
|
|
|
|
|
|
class FontScalerGM : public GM {
|
|
|
|
public:
|
|
|
|
FontScalerGM() {
|
|
|
|
this->setBGColor(0xFFFFFFFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~FontScalerGM() {
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2014-04-30 13:20:45 +00:00
|
|
|
virtual uint32_t onGetFlags() const SK_OVERRIDE {
|
|
|
|
return kSkipTiled_Flag;
|
|
|
|
}
|
|
|
|
|
2015-01-06 01:18:51 +00:00
|
|
|
virtual SkString onShortName() SK_OVERRIDE {
|
2011-11-04 15:47:41 +00:00
|
|
|
return SkString("fontscaler");
|
|
|
|
}
|
|
|
|
|
2015-01-06 01:18:51 +00:00
|
|
|
virtual SkISize onISize() SK_OVERRIDE {
|
2014-06-10 06:59:03 +00:00
|
|
|
return SkISize::Make(1450, 750);
|
2011-11-04 15:47:41 +00:00
|
|
|
}
|
|
|
|
|
2012-01-05 18:10:48 +00:00
|
|
|
static void rotate_about(SkCanvas* canvas,
|
|
|
|
SkScalar degrees,
|
|
|
|
SkScalar px, SkScalar py) {
|
2011-11-04 15:47:41 +00:00
|
|
|
canvas->translate(px, py);
|
|
|
|
canvas->rotate(degrees);
|
|
|
|
canvas->translate(-px, -py);
|
|
|
|
}
|
|
|
|
|
2015-01-06 01:18:51 +00:00
|
|
|
virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
|
2011-11-04 15:47:41 +00:00
|
|
|
SkPaint paint;
|
|
|
|
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setLCDRenderText(true);
|
|
|
|
//With freetype the default (normal hinting) can be really ugly.
|
|
|
|
//Most distros now set slight (vertical hinting only) in any event.
|
|
|
|
paint.setHinting(SkPaint::kSlight_Hinting);
|
2014-07-31 12:58:44 +00:00
|
|
|
sk_tool_utils::set_portable_typeface(&paint, "Times Roman", SkTypeface::kNormal);
|
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) {
|
2011-11-04 15:47:41 +00:00
|
|
|
SkScalar x = SkIntToScalar(10);
|
|
|
|
SkScalar y = SkIntToScalar(20);
|
|
|
|
|
|
|
|
SkAutoCanvasRestore acr(canvas, true);
|
|
|
|
canvas->translate(SkIntToScalar(50 + i * 230),
|
|
|
|
SkIntToScalar(20));
|
|
|
|
rotate_about(canvas, SkIntToScalar(i * 5), x, y * 10);
|
|
|
|
|
|
|
|
{
|
|
|
|
SkPaint p;
|
|
|
|
p.setAntiAlias(true);
|
|
|
|
SkRect r;
|
2012-01-05 18:10:48 +00:00
|
|
|
r.set(x - SkIntToScalar(3), SkIntToScalar(15),
|
|
|
|
x - SkIntToScalar(1), SkIntToScalar(280));
|
2011-11-04 15:47:41 +00:00
|
|
|
canvas->drawRect(r, p);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int ps = 6; ps <= 22; ps++) {
|
|
|
|
paint.setTextSize(SkIntToScalar(ps));
|
|
|
|
canvas->drawText(text, textLen, x, y, paint);
|
|
|
|
y += paint.getFontMetrics(NULL);
|
|
|
|
}
|
|
|
|
}
|
2012-01-05 18:10:48 +00:00
|
|
|
canvas->translate(0, SkIntToScalar(360));
|
2011-11-04 15:47:41 +00:00
|
|
|
paint.setSubpixelText(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2012-06-26 17:23:52 +00:00
|
|
|
|
2011-11-04 15:47:41 +00:00
|
|
|
static GM* MyFactory(void*) { return new FontScalerGM; }
|
|
|
|
static GMRegistry reg(MyFactory);
|
2012-06-26 17:23:52 +00:00
|
|
|
|
2011-11-04 15:47:41 +00:00
|
|
|
}
|