blob: 91fbbf5b2e5df0e839e5d2a8b0cafb2cf4090b31 [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_destructor, 256, 256, true, 0) {
void draw(SkCanvas* canvas) {
SkPath* path = new SkPath();
*path = SkPathBuilder().lineTo(20, 20).detach();
SkPath path2(*path);
delete path;
SkDebugf("path2 is " "%s" "empty", path2.isEmpty() ? "" : "not ");
}
} // END FIDDLE