blob: ea5fc64ddf4c3a0d94b6f8775d60df17dcb22463 [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=a7e04447b2081010c50d7920e80a6bb2
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Bitmap_installPixels_2, 256, 256, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkRandom random;
8 SkBitmap bitmap;
9 const int width = 8;
10 const int height = 8;
11 uint32_t pixels[width * height];
12 for (unsigned x = 0; x < width * height; ++x) {
13 pixels[x] = random.nextU();
14 }
15 SkImageInfo info = SkImageInfo::MakeN32(width, height, kUnpremul_SkAlphaType);
16 if (bitmap.installPixels(info, pixels, info.minRowBytes())) {
17 canvas->scale(32, 32);
Mike Reede1f72f92021-01-27 17:09:40 -050018 canvas->drawImage(bitmap.asImage(), 0, 0);
Hal Canary87515122019-03-15 14:22:51 -040019 }
20}
21} // END FIDDLE