Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Bitmap_tryAllocN32Pixels.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=a2b1e0910f37066f15ae56368775a6d8
5REG_FIDDLE(Bitmap_tryAllocN32Pixels, 256, 160, false, 0) {
6void draw(SkCanvas* canvas) {
8 if (bitmap.tryAllocN32Pixels(80, 80)) {
9 bitmap.eraseColor(SK_ColorTRANSPARENT);
10 bitmap.erase(0x7f3f7fff, SkIRect::MakeWH(50, 30));
11 bitmap.erase(0x3f7fff3f, SkIRect::MakeXYWH(20, 10, 50, 30));
12 bitmap.erase(0x5fff3f7f, SkIRect::MakeXYWH(40, 20, 50, 30));
13 canvas->drawImage(bitmap.asImage(), 0, 0);
14 for (int x : { 0, 30, 60, 90 } ) {
15 canvas->drawImage(bitmap.asImage(), x, 70);
16 }
17 }
18}
19} // END FIDDLE
constexpr SkColor SK_ColorTRANSPARENT
Definition SkColor.h:99
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
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
double x
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