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
26
void draw(SkCanvas* canvas) {
canvas->drawColor(SK_ColorBLACK);
SkPaint paint;
paint.setStyle(SkPaint::kFill_Style);
paint.setColor(0xffffffff);
paint.setAntiAlias(true);
int num_segments = 32;
float segment_step = 2.0f * 3.1415 / num_segments;
for (int i = 0; i < num_segments; i++) {
float s0 = sin(segment_step * (i + 0.25));
float c0 = cos(segment_step * (i + 0.25));
float s1 = sin(segment_step * (i - 0.25));
float c1 = cos(segment_step * (i - 0.25));
SkPath path;
path.moveTo(0, 0);
path.lineTo(c0 * 100.0, s0 * 100.0);
path.lineTo(c1 * 100.0, s1 * 100.0);
path.close();
path.offset(110, 110);
canvas->drawPath(path, paint);
}
}