Flutter Engine
The Flutter Engine
skpaint_bitmap_shader.cpp
Go to the documentation of this file.
1// Copyright 2020 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4REG_FIDDLE(skpaint_bitmap_shader, 256, 256, false, 5) {
5void draw(SkCanvas* canvas) {
6 canvas->clear(SK_ColorWHITE);
8 matrix.setScale(0.75f, 0.75f);
9 matrix.preRotate(30.0f);
13 canvas->drawPaint(paint);
14}
15} // END FIDDLE
constexpr SkColor SK_ColorWHITE
Definition: SkColor.h:122
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void drawPaint(const SkPaint &paint)
Definition: SkCanvas.cpp:1668
void clear(SkColor color)
Definition: SkCanvas.h:1199
sk_sp< SkShader > makeShader(SkTileMode tmx, SkTileMode tmy, const SkSamplingOptions &, const SkMatrix *localMatrix=nullptr) const
Definition: SkImage.cpp:179
const Paint & paint
Definition: color_source.cc:38
unsigned useCenter Optional< SkMatrix > matrix
Definition: SkRecords.h:258
sk_sp< const SkImage > image
Definition: SkRecords.h:269
REG_FIDDLE(skpaint_bitmap_shader, 256, 256, false, 5)