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=f0db16e06c9a1436917c8179f8c1718f 5cb93a386Sopenharmony_ciREG_FIDDLE(Bitmap_setPixels, 256, 50, false, 0) { 6cb93a386Sopenharmony_civoid draw(SkCanvas* canvas) { 7cb93a386Sopenharmony_ci uint8_t set1[5] = { 0xCA, 0xDA, 0xCA, 0xC9, 0xA3 }; 8cb93a386Sopenharmony_ci uint8_t set2[5] = { 0xAC, 0xA8, 0x89, 0x47, 0x87 }; 9cb93a386Sopenharmony_ci SkBitmap bitmap; 10cb93a386Sopenharmony_ci bitmap.installPixels(SkImageInfo::Make(5, 1, kGray_8_SkColorType, kOpaque_SkAlphaType), set1, 5); 11cb93a386Sopenharmony_ci canvas->scale(10, 50); 12cb93a386Sopenharmony_ci canvas->drawImage(bitmap.asImage(), 0, 0); 13cb93a386Sopenharmony_ci bitmap.setPixels(set2); 14cb93a386Sopenharmony_ci canvas->drawImage(bitmap.asImage(), 10, 0); 15cb93a386Sopenharmony_ci} 16cb93a386Sopenharmony_ci} // END FIDDLE 17