1 // Copyright 2019 Google LLC. 2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. 3 #include "tools/fiddle/examples.h" 4 REG_FIDDLE(Path_setIsVolatile, 50, 50, false, 0) { draw(SkCanvas * canvas)5void draw(SkCanvas* canvas) { 6 SkPaint paint; 7 paint.setStyle(SkPaint::kStroke_Style); 8 SkPath path; 9 path.setIsVolatile(true); 10 path.lineTo(40, 40); 11 canvas->drawPath(path, paint); 12 path.rewind(); 13 path.moveTo(0, 40); 14 path.lineTo(40, 0); 15 canvas->drawPath(path, paint); 16 } 17 } // END FIDDLE 18