mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
As part of eliminating the Flutter buildroot (https://github.com/flutter/flutter/issues/67373), we are moving all third-party dependencies from //third_party to //flutter/third_party. Once all third-party dependencies have been migrated, tooling and config will be moved and the buildroot will be eliminated altogether. To land this PR, we'll need to: 1. Stop the Skia -> Engine autoroller 1. Update the license goldens in this PR. 1. Update https://skia.googlesource.com/skia-autoroll-internal-config/+/refs/heads/main/skia-infra-public/skia-flutter.cfg#55 1. Land this PR. 1. Re-start the Skia -> Engine autoroller
path_ops
A small library that exposes C bindings for Skia's SkPathOps, with a minimal interface for SkPath.
This library only supports four commands from SkPath: moveTo, lineTo,
cubicTo, and close.
This library is a subset of the functionality provided by Skia's PathKit
library. It is primarily intended for use with the vector_graphics optimizing
compiler. That library uses this one to optimize certain masking and clipping
operations at compile time.