blob: 404c10e87b6d3250f1275a4e530c1eca28a61be6 [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=6e2a8c9358b34aebd2ec586815fe9d3a
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Bitmap_installPixels_3, 256, 64, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 uint8_t storage[][5] = {{ 0xCA, 0xDA, 0xCA, 0xC9, 0xA3 },
8 { 0xAC, 0xA8, 0x89, 0x47, 0x87 },
9 { 0x4B, 0x25, 0x25, 0x25, 0x46 },
10 { 0x90, 0x81, 0x25, 0x41, 0x33 },
11 { 0x75, 0x55, 0x44, 0x20, 0x00 }};
12 SkImageInfo imageInfo = SkImageInfo::Make(5, 5, kGray_8_SkColorType, kOpaque_SkAlphaType);
13 SkPixmap pixmap(imageInfo, storage[0], sizeof(storage) / 5);
14 SkBitmap bitmap;
15 bitmap.installPixels(pixmap);
16 canvas->scale(10, 10);
Mike Reede1f72f92021-01-27 17:09:40 -050017 canvas->drawImage(bitmap.asImage(), 0, 0);
Hal Canary87515122019-03-15 14:22:51 -040018 *pixmap.writable_addr8(2, 2) = 0xFF;
19 bitmap.installPixels(pixmap);
Mike Reede1f72f92021-01-27 17:09:40 -050020 canvas->drawImage(bitmap.asImage(), 10, 0);
Hal Canary87515122019-03-15 14:22:51 -040021}
22} // END FIDDLE