#include <point_field_geometry.h>
Public Member Functions | |
| PointFieldGeometry (std::vector< Point > points, Scalar radius, bool round) | |
| ~PointFieldGeometry ()=default | |
Public Member Functions inherited from impeller::Geometry | |
| virtual bool | CoversArea (const Matrix &transform, const Rect &rect) const |
Determines if this geometry, transformed by the given transform, will completely cover all surface area of the given rect. More... | |
| virtual bool | IsAxisAlignedRect () const |
Static Public Member Functions | |
| static size_t | ComputeCircleDivisions (Scalar scaled_radius, bool round) |
| Compute the number of vertices to divide each circle into. More... | |
| static bool | CanUseCompute (const ContentContext &renderer) |
| If the platform can use compute safely. More... | |
Static Public Member Functions inherited from impeller::Geometry | |
| static std::shared_ptr< Geometry > | MakeFillPath (Path path, std::optional< Rect > inner_rect=std::nullopt) |
| static std::shared_ptr< Geometry > | MakeStrokePath (Path path, Scalar stroke_width=0.0, Scalar miter_limit=4.0, Cap stroke_cap=Cap::kButt, Join stroke_join=Join::kMiter) |
| static std::shared_ptr< Geometry > | MakeCover () |
| static std::shared_ptr< Geometry > | MakeRect (const Rect &rect) |
| static std::shared_ptr< Geometry > | MakeOval (const Rect &rect) |
| static std::shared_ptr< Geometry > | MakeLine (const Point &p0, const Point &p1, Scalar width, Cap cap) |
| static std::shared_ptr< Geometry > | MakeCircle (const Point ¢er, Scalar radius) |
| static std::shared_ptr< Geometry > | MakeStrokedCircle (const Point ¢er, Scalar radius, Scalar stroke_width) |
| static std::shared_ptr< Geometry > | MakeRoundRect (const Rect &rect, const Size &radii) |
| static std::shared_ptr< Geometry > | MakePointField (std::vector< Point > points, Scalar radius, bool round) |
Additional Inherited Members | |
Static Protected Member Functions inherited from impeller::Geometry | |
| static GeometryResult | ComputePositionGeometry (const Tessellator::VertexGenerator &generator, const Entity &entity, RenderPass &pass) |
| static GeometryResult | ComputePositionUVGeometry (const Tessellator::VertexGenerator &generator, const Matrix &uv_transform, const Entity &entity, RenderPass &pass) |
Definition at line 12 of file point_field_geometry.h.
| impeller::PointFieldGeometry::PointFieldGeometry | ( | std::vector< Point > | points, |
| Scalar | radius, | ||
| bool | round | ||
| ) |
Definition at line 12 of file point_field_geometry.cc.
|
default |
|
static |
If the platform can use compute safely.
Definition at line 277 of file point_field_geometry.cc.
References impeller::ContentContext::GetContext(), impeller::ContentContext::GetDeviceCapabilities(), impeller::Context::kMetal, and impeller::Capabilities::SupportsCompute().
Referenced by impeller::testing::TEST_P().
|
static |
Compute the number of vertices to divide each circle into.
Definition at line 247 of file point_field_geometry.cc.
Referenced by impeller::testing::TEST_P().