blob: 5c425efe2ce78fadd01d887809065bd82e529206 [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=91f474a11a2112cd5c88c40a9015048d
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Bitmap_allocPixels_2, 256, 256, false, 4) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkBitmap bitmap;
8 bitmap.allocPixels(SkImageInfo::Make(64, 64, kGray_8_SkColorType, kOpaque_SkAlphaType));
9 SkCanvas offscreen(bitmap);
10 offscreen.scale(.5f, .5f);
11 for (int y : { 0, 64, 128, 192 } ) {
12 offscreen.drawBitmap(source, -y, -y);
13 canvas->drawBitmap(bitmap, y, y);
14 }
15}
16} // END FIDDLE