Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Canvas_rotate_2.cpp
Go to the documentation of this file.
1// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4// HASH=bcf5baea1c66a957d5ffd7b54bbbfeff
5REG_FIDDLE(Canvas_rotate_2, 256, 192, false, 0) {
6void draw(SkCanvas* canvas) {
8 SkFont font(fontMgr->matchFamilyStyle(nullptr, {}), 96);
9 canvas->drawString("A1", 130, 100, font, paint);
10 canvas->rotate(180, 130, 100);
11 canvas->drawString("A1", 130, 100, font, paint);
12}
13} // END FIDDLE
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void rotate(SkScalar degrees)
void drawString(const char str[], SkScalar x, SkScalar y, const SkFont &font, const SkPaint &paint)
Definition SkCanvas.h:1803
sk_sp< SkTypeface > matchFamilyStyle(const char familyName[], const SkFontStyle &) const
const Paint & paint
sk_sp< SkFontMgr > fontMgr
Definition examples.cpp:32
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60