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
24
void draw(SkCanvas* canvas) {
canvas->drawColor(SK_ColorBLACK);
SkPaint paint;
paint.setStyle(SkPaint::kFill_Style);
paint.setColor(0xffffffff);
paint.setAntiAlias(true);
SkPath path;
path.moveTo(0, 0);
path.lineTo(25, 100);
path.lineTo(50, 80);
path.close();
path.offset(10, 10);
canvas->drawPath(path, paint);
SkPath path2;
path2.moveTo(25, 0);
path2.lineTo(0, 100);
path2.lineTo(50, 100);
path2.close();
path2.offset(80, 10);
canvas->drawPath(path2, paint);
}