blob: 8ca14029752090a8448a6aa888ffcd730c7c93c2 [file] [log] [blame]
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +00001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkCanvas.h"
commit-bot@chromium.org74266812014-05-22 17:41:41 +000010#include "SkDashPathEffect.h"
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000011
reed@google.com0d30c512014-03-14 14:02:58 +000012static void test_nulldev(SkCanvas* canvas) {
13 SkBitmap bm;
reed6c225732014-06-09 19:52:07 -070014 bm.setInfo(SkImageInfo::MakeN32Premul(30, 30));
reed@google.com0d30c512014-03-14 14:02:58 +000015 // notice: no pixels mom! be sure we don't crash
16 // https://code.google.com/p/chromium/issues/detail?id=352616
17 SkCanvas c(bm);
18
19 SkBitmap src;
20 src.allocN32Pixels(10, 10);
21 src.eraseColor(SK_ColorRED);
22
23 // ensure we don't crash
24 c.writePixels(src, 0, 0);
25}
26
commit-bot@chromium.org74266812014-05-22 17:41:41 +000027static void draw_text_stroked(SkCanvas* canvas, const SkPaint& paint, SkScalar strokeWidth) {
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000028 SkPaint p(paint);
commit-bot@chromium.org74266812014-05-22 17:41:41 +000029 SkPoint loc = { 20, 435 };
skia.committer@gmail.comaffa77d2014-03-13 03:02:23 +000030
commit-bot@chromium.org74266812014-05-22 17:41:41 +000031 if (strokeWidth > 0) {
32 p.setStyle(SkPaint::kFill_Style);
33 canvas->drawText("P", 1, loc.fX, loc.fY - 225, p);
34 canvas->drawPosText("P", 1, &loc, p);
35 }
skia.committer@gmail.comaffa77d2014-03-13 03:02:23 +000036
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000037 p.setColor(SK_ColorRED);
38 p.setStyle(SkPaint::kStroke_Style);
commit-bot@chromium.org74266812014-05-22 17:41:41 +000039 p.setStrokeWidth(strokeWidth);
skia.committer@gmail.comaffa77d2014-03-13 03:02:23 +000040
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000041 canvas->drawText("P", 1, loc.fX, loc.fY - 225, p);
42 canvas->drawPosText("P", 1, &loc, p);
43}
44
commit-bot@chromium.org74266812014-05-22 17:41:41 +000045static void draw_text_set(SkCanvas* canvas, const SkPaint& paint) {
46 SkAutoCanvasRestore acr(canvas, true);
47
48 draw_text_stroked(canvas, paint, 10);
49
50 canvas->translate(200, 0);
51 draw_text_stroked(canvas, paint, 0);
52
53 const SkScalar intervals[] = { 20, 10, 5, 10 };
54 const SkScalar phase = 0;
55
56 canvas->translate(200, 0);
57 SkPaint p(paint);
58 p.setPathEffect(SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), phase))->unref();
reed@google.com7cb5e472014-05-22 17:59:51 +000059 draw_text_stroked(canvas, p, 10);
commit-bot@chromium.org74266812014-05-22 17:41:41 +000060}
61
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000062class StrokeTextGM : public skiagm::GM {
63 // Skia has a threshold above which it draws text via paths instead of using scalercontext
64 // and caching the glyph. This GM wants to ensure that we draw stroking correctly on both
65 // sides of this threshold.
66 enum {
67 kBelowThreshold_TextSize = 255,
68 kAboveThreshold_TextSize = 257
69 };
70public:
71 StrokeTextGM() {}
72
73protected:
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +000074 virtual uint32_t onGetFlags() const SK_OVERRIDE {
75 return kSkipTiled_Flag;
76 }
77
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000078 virtual SkString onShortName() SK_OVERRIDE {
79 return SkString("stroketext");
80 }
81
82 virtual SkISize onISize() SK_OVERRIDE {
commit-bot@chromium.org74266812014-05-22 17:41:41 +000083 return SkISize::Make(1200, 480);
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000084 }
85
86 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
reed@google.com0d30c512014-03-14 14:02:58 +000087 if (true) { test_nulldev(canvas); }
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000088 SkPaint paint;
89 paint.setAntiAlias(true);
Cary Clark992c7b02014-07-31 08:58:44 -040090 sk_tool_utils::set_portable_typeface(&paint);
skia.committer@gmail.comaffa77d2014-03-13 03:02:23 +000091
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000092 paint.setTextSize(kBelowThreshold_TextSize);
commit-bot@chromium.org74266812014-05-22 17:41:41 +000093 draw_text_set(canvas, paint);
skia.committer@gmail.comaffa77d2014-03-13 03:02:23 +000094
commit-bot@chromium.org74266812014-05-22 17:41:41 +000095 canvas->translate(600, 0);
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000096 paint.setTextSize(kAboveThreshold_TextSize);
commit-bot@chromium.org74266812014-05-22 17:41:41 +000097 draw_text_set(canvas, paint);
commit-bot@chromium.org641e33b2014-03-12 20:31:24 +000098 }
99
100private:
101 typedef skiagm::GM INHERITED;
102};
103
104DEF_GM( return SkNEW(StrokeTextGM); )