You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
588 B
16 lines
588 B
// Copyright 2019 Google LLC.
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
#include "tools/fiddle/examples.h"
|
|
// HASH=185746dc0faa6f1df30c4afe098646ff
|
|
REG_FIDDLE(Canvas_drawImage, 256, 64, false, 4) {
|
|
void draw(SkCanvas* canvas) {
|
|
// sk_sp<SkImage> image;
|
|
SkImage* imagePtr = image.get();
|
|
canvas->drawImage(imagePtr, 0, 0);
|
|
SkPaint paint;
|
|
canvas->drawImage(imagePtr, 80, 0, SkSamplingOptions(), &paint);
|
|
paint.setAlpha(0x80);
|
|
canvas->drawImage(imagePtr, 160, 0, SkSamplingOptions(), &paint);
|
|
}
|
|
} // END FIDDLE
|