blob: 14110c62eac408ee7b069b0a81f7cf0fbba1cf70 [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, 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