Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Prev Previous commit
Next Next commit
++
  • Loading branch information
jonahwilliams committed Sep 7, 2024
commit 184f719932706536d76f0a1ec3a9945aa34893c1
9 changes: 5 additions & 4 deletions impeller/geometry/path.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,11 @@ class Path {
std::make_unique<std::vector<Point>>(),
Polyline::ReclaimPointBufferCallback reclaim = nullptr) const;

void EndContour(size_t storage_offset,
Polyline& polyline,
std::optional<size_t> previous_path_component_index,
std::vector<PolylineContour::Component>& poly_components) const;
void EndContour(
size_t storage_offset,
Polyline& polyline,
std::optional<size_t> previous_path_component_index,
std::vector<PolylineContour::Component>& poly_components) const;

std::optional<Rect> GetBoundingBox() const;

Expand Down