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=fe80fd80b98a20823db7fb9a077243c7
|
2019-03-18 20:06:34 +00:00
|
|
|
REG_FIDDLE(Shader_Methods_b, 256, 256, false, 0) {
|
2019-03-15 18:22:51 +00:00
|
|
|
void draw(SkCanvas* canvas) {
|
|
|
|
SkPaint paint;
|
|
|
|
SkBitmap bitmap;
|
|
|
|
bitmap.setInfo(SkImageInfo::MakeA8(5, 1), 5); // bitmap only contains alpha
|
|
|
|
uint8_t pixels[5] = { 0x22, 0x55, 0x88, 0xBB, 0xFF };
|
|
|
|
bitmap.setPixels(pixels);
|
2019-04-08 17:20:23 +00:00
|
|
|
paint.setShader(bitmap.makeShader(SkTileMode::kMirror, SkTileMode::kMirror));
|
2019-03-15 18:22:51 +00:00
|
|
|
for (SkColor c : { SK_ColorRED, SK_ColorBLUE, SK_ColorGREEN } ) {
|
|
|
|
paint.setColor(c); // all components in color affect shader
|
|
|
|
canvas->drawCircle(50, 50, 50, paint);
|
|
|
|
canvas->translate(70, 70);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // END FIDDLE
|