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=2c5c4230ccd2861a5d15b7cd2764ab6e 5cb93a386Sopenharmony_ciREG_FIDDLE(Bitmap_erase, 256, 70, false, 0) { 6cb93a386Sopenharmony_civoid draw(SkCanvas* canvas) { 7cb93a386Sopenharmony_ci SkBitmap bitmap; 8cb93a386Sopenharmony_ci bitmap.allocPixels(SkImageInfo::MakeN32(2, 2, kPremul_SkAlphaType)); 9cb93a386Sopenharmony_ci bitmap.erase(0x7fff7f3f, SkIRect::MakeWH(1, 1)); 10cb93a386Sopenharmony_ci bitmap.erase(0x7f7f3fff, SkIRect::MakeXYWH(0, 1, 1, 1)); 11cb93a386Sopenharmony_ci bitmap.erase(0x7f3fff7f, SkIRect::MakeXYWH(1, 0, 1, 1)); 12cb93a386Sopenharmony_ci bitmap.erase(0x7f1fbf5f, SkIRect::MakeXYWH(1, 1, 1, 1)); 13cb93a386Sopenharmony_ci canvas->scale(25, 25); 14cb93a386Sopenharmony_ci canvas->drawImage(bitmap.asImage(), 0, 0); 15cb93a386Sopenharmony_ci canvas->drawImage(bitmap.asImage(), .5f, .5f); 16cb93a386Sopenharmony_ci} 17cb93a386Sopenharmony_ci} // END FIDDLE 18