Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / docs / examples / Bitmap_tryAllocN32Pixels.cpp
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.
3 #include "tools/fiddle/examples.h"
4 // HASH=a2b1e0910f37066f15ae56368775a6d8
5 REG_FIDDLE(Bitmap_tryAllocN32Pixels, 256, 160, false, 0) {
6 void 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->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