blob: ad11bb879af3e59ab767a7133f9d69d6e1e585a5 [file] [log] [blame]
// 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"
REG_FIDDLE(Path_isVolatile, 256, 256, true, 0) {
void draw(SkCanvas* canvas) {
SkPath path;
SkDebugf("volatile by default is %s\n", path.isVolatile() ? "true" : "false");
}
} // END FIDDLE