blob: a33341220e3043a46e82774c30844918419d71a0 [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=52ccaeda67924373c5b55a2b89fe314d
5REG_FIDDLE(Bitmap_030, 256, 256, true, 0) {
6void 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