Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Bitmap_erase.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=2c5c4230ccd2861a5d15b7cd2764ab6e
5REG_FIDDLE(Bitmap_erase, 256, 70, false, 0) {
6void draw(SkCanvas* canvas) {
9 bitmap.erase(0x7fff7f3f, SkIRect::MakeWH(1, 1));
10 bitmap.erase(0x7f7f3fff, SkIRect::MakeXYWH(0, 1, 1, 1));
11 bitmap.erase(0x7f3fff7f, SkIRect::MakeXYWH(1, 0, 1, 1));
12 bitmap.erase(0x7f1fbf5f, SkIRect::MakeXYWH(1, 1, 1, 1));
13 canvas->scale(25, 25);
14 canvas->drawImage(bitmap.asImage(), 0, 0);
15 canvas->drawImage(bitmap.asImage(), .5f, .5f);
16}
17} // END FIDDLE
@ kPremul_SkAlphaType
pixel components are premultiplied by alpha
Definition SkAlphaType.h:29
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void scale(SkScalar sx, SkScalar sy)
void drawImage(const SkImage *image, SkScalar left, SkScalar top)
Definition SkCanvas.h:1528
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
static constexpr SkIRect MakeWH(int32_t w, int32_t h)
Definition SkRect.h:56
static constexpr SkIRect MakeXYWH(int32_t x, int32_t y, int32_t w, int32_t h)
Definition SkRect.h:104
static SkImageInfo MakeN32(int width, int height, SkAlphaType at)