13b9c95295
Committed: https://skia.googlesource.com/skia/+/6296da736fbf40aae881650c239420f64e576c3f GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1933393002 Review-Url: https://codereview.chromium.org/1933393002
79 lines
2.1 KiB
C++
79 lines
2.1 KiB
C++
/*
|
|
* 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.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkGraphics.h"
|
|
#include "SkTypeface.h"
|
|
|
|
// GM to stress the GPU font cache
|
|
|
|
static SkScalar draw_string(SkCanvas* canvas, const SkString& text, SkScalar x,
|
|
SkScalar y, const SkPaint& paint) {
|
|
canvas->drawText(text.c_str(), text.size(), x, y, paint);
|
|
return x + paint.measureText(text.c_str(), text.size());
|
|
}
|
|
|
|
class FontCacheGM : public skiagm::GM {
|
|
public:
|
|
FontCacheGM() {}
|
|
|
|
protected:
|
|
SkString onShortName() override {
|
|
return SkString("fontcache");
|
|
}
|
|
|
|
SkISize onISize() override {
|
|
return SkISize::Make(1280, 640);
|
|
}
|
|
|
|
void onOnceBeforeDraw() override {
|
|
fTypefaces[0] = sk_tool_utils::create_portable_typeface("serif", SkTypeface::kItalic);
|
|
fTypefaces[1] = sk_tool_utils::create_portable_typeface("sans-serif", SkTypeface::kItalic);
|
|
}
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
|
SkPaint paint;
|
|
paint.setAntiAlias(true);
|
|
paint.setLCDRenderText(true);
|
|
paint.setSubpixelText(true);
|
|
paint.setTypeface(fTypefaces[0]);
|
|
paint.setTextSize(192);
|
|
|
|
// Make sure the nul character does not cause problems.
|
|
paint.measureText("\0", 1);
|
|
|
|
SkScalar x = 20;
|
|
SkScalar y = 128;
|
|
SkString text("ABCDEFGHIJ");
|
|
draw_string(canvas, text, x, y, paint);
|
|
y += 100;
|
|
SkString text2("KLMNOPQRS");
|
|
draw_string(canvas, text2, x, y, paint);
|
|
y += 100;
|
|
SkString text3("TUVWXYZ012");
|
|
draw_string(canvas, text3, x, y, paint);
|
|
y += 100;
|
|
paint.setTypeface(fTypefaces[1]);
|
|
draw_string(canvas, text, x, y, paint);
|
|
y += 100;
|
|
draw_string(canvas, text2, x, y, paint);
|
|
y += 100;
|
|
draw_string(canvas, text3, x, y, paint);
|
|
y += 100;
|
|
}
|
|
|
|
private:
|
|
sk_sp<SkTypeface> fTypefaces[2];
|
|
typedef GM INHERITED;
|
|
};
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_GM(return new FontCacheGM;)
|