Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Canvas_drawBitmapRect_3.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=bdbeac3c97f60a63987b1cc8e1f1e91e
5REG_FIDDLE(Canvas_drawBitmapRect_3, 256, 64, false, 0) {
6void draw(SkCanvas* canvas) {
7 uint32_t pixels[][2] = { { 0x00000000, 0x55550000},
8 { 0xAAAA0000, 0xFFFF0000} };
10 bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2),
11 (void*) pixels, sizeof(pixels[0]));
13 canvas->scale(4, 4);
14 for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) {
16 canvas->drawImageRect(bitmap.asImage().get(), SkRect::MakeWH(8, 8),
18 canvas->translate(8, 0);
19 }
20}
21} // END FIDDLE
SkColor4f color
@ kPlus
r = min(s + d, 1)
constexpr SkColor SK_ColorBLUE
Definition SkColor.h:135
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
constexpr SkColor SK_ColorGREEN
Definition SkColor.h:131
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void translate(SkScalar dx, SkScalar dy)
void drawImageRect(const SkImage *, const SkRect &src, const SkRect &dst, const SkSamplingOptions &, const SkPaint *, SrcRectConstraint)
void scale(SkScalar sx, SkScalar sy)
static sk_sp< SkColorFilter > Blend(const SkColor4f &c, sk_sp< SkColorSpace >, SkBlendMode mode)
const Paint & paint
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
static SkImageInfo MakeN32Premul(int width, int height)
static constexpr SkRect MakeWH(float w, float h)
Definition SkRect.h:609