blob: 9ed2481385ab3f57db4ee3a970fc59905d849da0 [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"
// HASH=2a2d39f5da611545caa18bbcea873ab2
REG_FIDDLE(Path_isInverseFillType_2, 256, 256, true, 0) {
void draw(SkCanvas* canvas) {
SkPath path;
SkDebugf("default path fill type is inverse: %s\n",
path.isInverseFillType() ? "true" : "false");
}
} // END FIDDLE