blob: 81113a526c3169bc4e5af8887b10bdf5f455f54f [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=34479d5aa23ce9f5e334b0786c9edb22
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Bitmap_tryAllocPixels, 256, 256, false, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkBitmap bitmap;
8 SkImageInfo info = SkImageInfo::Make(64, 256, kGray_8_SkColorType, kOpaque_SkAlphaType);
9 if (bitmap.tryAllocPixels(info, 0)) {
10 SkCanvas offscreen(bitmap);
11 offscreen.scale(.5f, .5f);
12 for (int x : { 0, 64, 128, 192 } ) {
13 offscreen.drawBitmap(source, -x, 0);
14 canvas->drawBitmap(bitmap, x, 0);
15 }
16 }
17}
18} // END FIDDLE