blob: dca595d008c7af7afd46b0c895f5d2428e0ae538 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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.
3#include "fiddle/examples.h"
4// HASH=a2b1e0910f37066f15ae56368775a6d8
5REG_FIDDLE(Bitmap_044, 256, 160, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkBitmap bitmap;
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->drawBitmap(bitmap, 0, 0);
14 for (int x : { 0, 30, 60, 90 } ) {
15 canvas->drawBitmap(bitmap, x, 70);
16 }
17 }
18}
19} // END FIDDLE