Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / docs / examples / Bitmap_reset.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=52ccaeda67924373c5b55a2b89fe314d
5 REG_FIDDLE(Bitmap_reset, 256, 256, true, 0) {
6 void draw(SkCanvas* canvas) {
7     SkBitmap bitmap;
8     bitmap.setInfo(SkImageInfo::Make(1, 1, kRGBA_8888_SkColorType, kOpaque_SkAlphaType));
9     bitmap.allocPixels();
10     SkDebugf("width:%d height:%d isNull:%s\n", bitmap.width(), bitmap.height(),
11              bitmap.isNull() ? "true" : "false");
12     bitmap.reset();
13     SkDebugf("width:%d height:%d isNull:%s\n", bitmap.width(), bitmap.height(),
14              bitmap.isNull() ? "true" : "false");
15 }
16 }  // END FIDDLE