blob: ab877c41865e5b048d9a8110da6ec6bdbc2ed98e [file]
// 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