blob: ce6af38b200278049e9db97a38eda54a60c8f2ac [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 "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