2013-06-05 18:00:30 +00:00
|
|
|
/*
|
|
|
|
* 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 "SkCanvas.h"
|
2018-12-13 15:08:05 +00:00
|
|
|
#include "SkFont.h"
|
2013-06-05 18:00:30 +00:00
|
|
|
#include "SkPath.h"
|
2019-03-20 16:12:10 +00:00
|
|
|
#include "ToolUtils.h"
|
|
|
|
#include "gm.h"
|
2013-06-05 18:00:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Skia may draw from outlines when the size is very large, so we exercise that
|
|
|
|
* here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class BigTextGM : public skiagm::GM {
|
|
|
|
public:
|
|
|
|
BigTextGM() {}
|
|
|
|
|
|
|
|
protected:
|
2014-04-30 13:20:45 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkString onShortName() override {
|
2013-06-05 18:00:30 +00:00
|
|
|
return SkString("bigtext");
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
SkISize onISize() override {
|
2013-06-05 18:00:30 +00:00
|
|
|
return SkISize::Make(640, 480);
|
|
|
|
}
|
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDraw(SkCanvas* canvas) override {
|
2013-06-05 18:00:30 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
2019-03-20 16:12:10 +00:00
|
|
|
SkFont font(ToolUtils::create_portable_typeface(), 1500);
|
2013-06-05 18:00:30 +00:00
|
|
|
|
|
|
|
SkRect r;
|
2018-12-13 15:08:05 +00:00
|
|
|
(void)font.measureText("/", 1, kUTF8_SkTextEncoding, &r);
|
2013-06-05 18:00:30 +00:00
|
|
|
SkPoint pos = {
|
|
|
|
this->width()/2 - r.centerX(),
|
|
|
|
this->height()/2 - r.centerY()
|
|
|
|
};
|
|
|
|
|
|
|
|
paint.setColor(SK_ColorRED);
|
2018-12-13 15:08:05 +00:00
|
|
|
canvas->drawSimpleText("/", 1, kUTF8_SkTextEncoding, pos.fX, pos.fY, font, paint);
|
2013-06-06 07:01:37 +00:00
|
|
|
|
2013-06-05 18:00:30 +00:00
|
|
|
paint.setColor(SK_ColorBLUE);
|
2018-12-13 15:08:05 +00:00
|
|
|
canvas->drawSimpleText("\\", 1, kUTF8_SkTextEncoding, pos.fX, pos.fY, font, paint);
|
2013-06-05 18:00:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef skiagm::GM INHERITED;
|
|
|
|
};
|
|
|
|
|
2015-08-26 20:07:48 +00:00
|
|
|
DEF_GM(return new BigTextGM;)
|