You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.6 KiB
64 lines
1.6 KiB
4 months ago
|
/*
|
||
|
* 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 "gm/gm.h"
|
||
|
#include "include/core/SkCanvas.h"
|
||
|
#include "include/core/SkColor.h"
|
||
|
#include "include/core/SkFont.h"
|
||
|
#include "include/core/SkFontTypes.h"
|
||
|
#include "include/core/SkPaint.h"
|
||
|
#include "include/core/SkPoint.h"
|
||
|
#include "include/core/SkRect.h"
|
||
|
#include "include/core/SkSize.h"
|
||
|
#include "include/core/SkString.h"
|
||
|
#include "include/core/SkTypeface.h"
|
||
|
#include "tools/ToolUtils.h"
|
||
|
|
||
|
/**
|
||
|
* Skia may draw from outlines when the size is very large, so we exercise that
|
||
|
* here.
|
||
|
*/
|
||
|
|
||
|
class BigTextGM : public skiagm::GM {
|
||
|
public:
|
||
|
BigTextGM() {}
|
||
|
|
||
|
protected:
|
||
|
|
||
|
SkString onShortName() override {
|
||
|
return SkString("bigtext");
|
||
|
}
|
||
|
|
||
|
SkISize onISize() override {
|
||
|
return SkISize::Make(640, 480);
|
||
|
}
|
||
|
|
||
|
void onDraw(SkCanvas* canvas) override {
|
||
|
SkPaint paint;
|
||
|
paint.setAntiAlias(true);
|
||
|
SkFont font(ToolUtils::create_portable_typeface(), 1500);
|
||
|
|
||
|
SkRect r;
|
||
|
(void)font.measureText("/", 1, SkTextEncoding::kUTF8, &r);
|
||
|
SkPoint pos = {
|
||
|
this->width()/2 - r.centerX(),
|
||
|
this->height()/2 - r.centerY()
|
||
|
};
|
||
|
|
||
|
paint.setColor(SK_ColorRED);
|
||
|
canvas->drawSimpleText("/", 1, SkTextEncoding::kUTF8, pos.fX, pos.fY, font, paint);
|
||
|
|
||
|
paint.setColor(SK_ColorBLUE);
|
||
|
canvas->drawSimpleText("\\", 1, SkTextEncoding::kUTF8, pos.fX, pos.fY, font, paint);
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
using INHERITED = skiagm::GM;
|
||
|
};
|
||
|
|
||
|
DEF_GM(return new BigTextGM;)
|