2019-03-15 18:22:51 +00:00
|
|
|
// Copyright 2019 Google LLC.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "tools/fiddle/examples.h"
|
2019-03-15 18:22:51 +00:00
|
|
|
// HASH=a0cdbafed4786788cc90681e7b294234
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(Pixmap_erase, 256, 50, false, 0) {
|
2019-03-15 18:22:51 +00:00
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
uint32_t storage[2];
|
|
|
|
SkImageInfo info = SkImageInfo::MakeN32Premul(1, 2);
|
|
|
|
SkPixmap pixmap(info, storage, info.minRowBytes());
|
|
|
|
pixmap.erase(SK_ColorBLUE, {0, 0, 1, 1});
|
|
|
|
pixmap.erase(SK_ColorRED, {0, 1, 1, 2});
|
|
|
|
SkBitmap bitmap;
|
|
|
|
canvas->scale(20, 20);
|
|
|
|
bitmap.installPixels(pixmap);
|
2021-01-28 01:39:22 +00:00
|
|
|
canvas->drawImage(bitmap.asImage(), 0, 0);
|
2019-03-15 18:22:51 +00:00
|
|
|
}
|
|
|
|
} // END FIDDLE
|