Options
These globals are now defined:
double duration; // The requested duration of the animation. double frame; // A value in [0, 1] of where we are in the animation.
This global is now defined:
GrBackendRenderTarget backEndRenderTarget;
GrBackendTexture backEndTextureRenderTarget;
Optional source image
These globals are now defined:
SkBitmap source; sk_sp<SkImage> image; GrBackendTexture backEndTexture; // GPU Only.
Note:
Adding comments with SK_FOLD_START and SK_FOLD_END creates foldable code
blocks.
These blocks will be folded by default and are useful for highlighting specific lines of code.
You can also use the keyboard shortcuts Ctrl+S and Ctrl+E in the code editor to set them.
These blocks will be folded by default and are useful for highlighting specific lines of code.
You can also use the keyboard shortcuts Ctrl+S and Ctrl+E in the code editor to set them.
xxxxxxxxxx
23
void draw(SkCanvas* canvas) {
SkPath path;
path.moveTo(20, 20);
path.lineTo(20, 40);
path.lineTo(40, 20);
SkPaint paint;
paint.setStyle(SkPaint::kStroke_Style);
for (int i = 0; i < 2; i++) {
SkPath path2;
path2.moveTo(60, 60);
path2.lineTo(80, 60);
path2.lineTo(80, 40);
for (int j = 0; j < 2; j++) {
SkPath test(path);
test.reverseAddPath(path2);
canvas->drawPath(test, paint);
canvas->translate(100, 0);
path2.close();
}
canvas->translate(-200, 100);
path.close();
}
}