Flutter Engine
The Flutter Engine
text_scale_skew.cpp
Go to the documentation of this file.
1/*
2 * Copyright 2017 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/gm.h"
13
14#include <initializer_list>
15
16class SkCanvas;
17
18// http://bug.skia.org/7315
19DEF_SIMPLE_GM(text_scale_skew, canvas, 256, 128) {
20 SkPaint p;
21 p.setAntiAlias(true);
23 font.setSize(18.0f);
24 float y = 10.0f;
25 for (float scale : { 0.5f, 0.71f, 1.0f, 1.41f, 2.0f }) {
26 font.setScaleX(scale);
27 y += font.getSpacing();
28 float x = 50.0f;
29 for (float skew : { -0.5f, 0.0f, 0.5f }) {
30 font.setSkewX(skew);
32 x += 78.0f;
33 }
34 }
35}
void skew(SkScalar sx, SkScalar sy)
Definition: SkCanvas.cpp:1312
Definition: SkFont.h:35
static void DrawString(SkCanvas *canvas, const char text[], SkScalar x, SkScalar y, const SkFont &font, const SkPaint &paint, Align align=kLeft_Align)
Definition: SkTextUtils.h:34
double y
double x
SkFont DefaultPortableFont()
font
Font Metadata and Metrics.
const Scalar scale
DEF_SIMPLE_GM(text_scale_skew, canvas, 256, 128)