Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix null geometry
  • Loading branch information
jonahwilliams committed Oct 21, 2022
commit f46ffdac1ce2c0dd3df023470e6c264fa125d92c
1 change: 1 addition & 0 deletions impeller/aiks/canvas.cc
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ void Canvas::DrawVertices(Vertices vertices,
std::make_shared<VerticesContents>();
contents->SetColor(paint.color);
contents->SetBlendMode(blend_mode);
contents->SetGeometry(std::move(geometry));
entity.SetContents(paint.WithFilters(std::move(contents), true));
}

Expand Down