blob: 9ec6268933bf2ddc87b922fb96e9477efa8ef216 [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=bdbeac3c97f60a63987b1cc8e1f1e91e
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Canvas_drawBitmapRect_3, 256, 64, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 uint32_t pixels[][2] = { { 0x00000000, 0x55550000},
8 { 0xAAAA0000, 0xFFFF0000} };
9 SkBitmap bitmap;
10 bitmap.installPixels(SkImageInfo::MakeN32Premul(2, 2),
11 (void*) pixels, sizeof(pixels[0]));
12 SkPaint paint;
13 canvas->scale(4, 4);
14 for (auto color : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) {
Mike Reedb286bc22019-04-08 16:23:20 -040015 paint.setColorFilter(SkColorFilters::Blend(color, SkBlendMode::kPlus));
Hal Canary87515122019-03-15 14:22:51 -040016 canvas->drawBitmapRect(bitmap, SkRect::MakeWH(8, 8), &paint);
17 canvas->translate(8, 0);
18 }
19}
20} // END FIDDLE