blob: 250d0128e42d1eb75d727c38aa0d63a46b80bb02 [file] [log] [blame]
joshualitte4cee1f2015-05-11 13:04:28 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
Mike Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
joshualitte4cee1f2015-05-11 13:04:28 -070010
11#include "SkCanvas.h"
12#include "SkSurface.h"
13#include "SkTextBlob.h"
14
15// This tests that we don't try to reuse textblobs from the GPU textblob cache across pixel geometry
16// changes when we have LCD. crbug/486744
17namespace skiagm {
18class TextBlobGeometryChange : public GM {
19public:
20 TextBlobGeometryChange() { }
21
22protected:
23 SkString onShortName() override {
24 return SkString("textblobgeometrychange");
25 }
26
27 SkISize onISize() override {
28 return SkISize::Make(kWidth, kHeight);
29 }
30
31 void onDraw(SkCanvas* canvas) override {
32 const char text[] = "Hamburgefons";
33
Mike Reed28bd8822018-12-22 22:29:45 -050034 SkFont font(sk_tool_utils::create_portable_typeface(), 20);
35 font.setEdging(SkFont::Edging::kSubpixelAntiAlias);
joshualitte4cee1f2015-05-11 13:04:28 -070036
37 SkTextBlobBuilder builder;
38
Mike Reed28bd8822018-12-22 22:29:45 -050039 sk_tool_utils::add_to_text_blob(&builder, text, font, 10, 10);
joshualitte4cee1f2015-05-11 13:04:28 -070040
fmalita37283c22016-09-13 10:00:23 -070041 sk_sp<SkTextBlob> blob(builder.make());
joshualitte4cee1f2015-05-11 13:04:28 -070042
brianosman0e22eb82016-08-30 07:07:59 -070043 SkImageInfo info = SkImageInfo::MakeN32Premul(200, 200);
brianosman3a0dbde2016-07-26 11:36:05 -070044 SkSurfaceProps props(0, kUnknown_SkPixelGeometry);
Cary Clarka24712e2018-09-05 18:41:40 +000045 auto surface = sk_tool_utils::makeSurface(canvas, info, &props);
mtklein9e65f932016-04-06 13:57:38 -070046 SkCanvas* c = surface->getCanvas();
47
48 // LCD text on white background
49 SkRect rect = SkRect::MakeLTRB(0.f, 0.f, SkIntToScalar(kWidth), kHeight / 2.f);
50 SkPaint rectPaint;
51 rectPaint.setColor(0xffffffff);
52 canvas->drawRect(rect, rectPaint);
Mike Reed28bd8822018-12-22 22:29:45 -050053 canvas->drawTextBlob(blob, 10, 50, SkPaint());
mtklein9e65f932016-04-06 13:57:38 -070054
55 // This should not look garbled since we should disable LCD text in this case
56 // (i.e., unknown pixel geometry)
57 c->clear(0x00ffffff);
Mike Reed28bd8822018-12-22 22:29:45 -050058 c->drawTextBlob(blob, 10, 150, SkPaint());
mtklein9e65f932016-04-06 13:57:38 -070059 surface->draw(canvas, 0, 0, nullptr);
joshualitte4cee1f2015-05-11 13:04:28 -070060 }
61
62private:
mtkleindbfd7ab2016-09-01 11:24:54 -070063 static constexpr int kWidth = 200;
64 static constexpr int kHeight = 200;
joshualitte4cee1f2015-05-11 13:04:28 -070065
66 typedef GM INHERITED;
67};
68
69//////////////////////////////////////////////////////////////////////////////
70
halcanary385fe4d2015-08-26 13:07:48 -070071DEF_GM(return new TextBlobGeometryChange;)
joshualitte4cee1f2015-05-11 13:04:28 -070072}