#include "third_party/skia/include/core/SkPath.h"
#include "third_party/skia/include/core/SkPathBuilder.h"
#include "third_party/skia/include/core/SkPathTypes.h"
#include "third_party/skia/include/pathops/SkPathOps.h"
Go to the source code of this file.
|
| SkPath * | flutter::CreatePath (SkPathFillType fill_type) |
| |
| API void | flutter::DestroyPathBuilder (SkPath *path) |
| |
| void | flutter::MoveTo (SkPath *path, SkScalar x, SkScalar y) |
| |
| void | flutter::LineTo (SkPath *path, SkScalar x, SkScalar y) |
| |
| void | flutter::CubicTo (SkPath *path, SkScalar x1, SkScalar y1, SkScalar x2, SkScalar y2, SkScalar x3, SkScalar y3) |
| |
| void | flutter::Close (SkPath *path) |
| |
| void | flutter::Reset (SkPath *path) |
| |
| void | flutter::DestroyPath (SkPath *path) |
| |
| void | flutter::Op (SkPath *one, SkPath *two, SkPathOp op) |
| |
| int | flutter::GetFillType (SkPath *path) |
| |
| struct PathData * | flutter::Data (SkPath *path) |
| |
| void | flutter::DestroyData (PathData *data) |
| |
◆ API