1cb93a386Sopenharmony_ci// Copyright 2019 Google LLC.
2cb93a386Sopenharmony_ci// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3cb93a386Sopenharmony_ci#include "tools/fiddle/examples.h"
4cb93a386Sopenharmony_ci// HASH=6e2a8c9358b34aebd2ec586815fe9d3a
5cb93a386Sopenharmony_ciREG_FIDDLE(Bitmap_installPixels_3, 256, 64, false, 0) {
6cb93a386Sopenharmony_civoid draw(SkCanvas* canvas) {
7cb93a386Sopenharmony_ci    uint8_t storage[][5] = {{ 0xCA, 0xDA, 0xCA, 0xC9, 0xA3 },
8cb93a386Sopenharmony_ci                            { 0xAC, 0xA8, 0x89, 0x47, 0x87 },
9cb93a386Sopenharmony_ci                            { 0x4B, 0x25, 0x25, 0x25, 0x46 },
10cb93a386Sopenharmony_ci                            { 0x90, 0x81, 0x25, 0x41, 0x33 },
11cb93a386Sopenharmony_ci                            { 0x75, 0x55, 0x44, 0x20, 0x00 }};
12cb93a386Sopenharmony_ci    SkImageInfo imageInfo = SkImageInfo::Make(5, 5, kGray_8_SkColorType, kOpaque_SkAlphaType);
13cb93a386Sopenharmony_ci    SkPixmap pixmap(imageInfo, storage[0], sizeof(storage) / 5);
14cb93a386Sopenharmony_ci    SkBitmap bitmap;
15cb93a386Sopenharmony_ci    bitmap.installPixels(pixmap);
16cb93a386Sopenharmony_ci    canvas->scale(10, 10);
17cb93a386Sopenharmony_ci    canvas->drawImage(bitmap.asImage(), 0, 0);
18cb93a386Sopenharmony_ci    *pixmap.writable_addr8(2, 2) = 0xFF;
19cb93a386Sopenharmony_ci    bitmap.installPixels(pixmap);
20cb93a386Sopenharmony_ci    canvas->drawImage(bitmap.asImage(), 10, 0);
21cb93a386Sopenharmony_ci}
22cb93a386Sopenharmony_ci}  // END FIDDLE
23