Home
last modified time | relevance | path

Searched refs:FT_IS_SMALL (Results 1 – 1 of 1) sorted by relevance

/external/freetype/src/base/
Dftstroke.c72 #define FT_IS_SMALL( x ) ( (x) > -FT_EPSILON && (x) < FT_EPSILON ) macro
117 close1 = FT_IS_SMALL( d1.x ) && FT_IS_SMALL( d1.y ); in ft_conic_is_small_enough()
118 close2 = FT_IS_SMALL( d2.x ) && FT_IS_SMALL( d2.y ); in ft_conic_is_small_enough()
210 close1 = FT_IS_SMALL( d1.x ) && FT_IS_SMALL( d1.y ); in ft_cubic_is_small_enough()
211 close2 = FT_IS_SMALL( d2.x ) && FT_IS_SMALL( d2.y ); in ft_cubic_is_small_enough()
212 close3 = FT_IS_SMALL( d3.x ) && FT_IS_SMALL( d3.y ); in ft_cubic_is_small_enough()
436 FT_IS_SMALL( border->points[border->num_points - 1].x - to->x ) && in ft_stroke_border_lineto()
437 FT_IS_SMALL( border->points[border->num_points - 1].y - to->y ) ) in ft_stroke_border_lineto()
1386 if ( FT_IS_SMALL( stroker->center.x - control->x ) && in FT_Stroker_ConicTo()
1387 FT_IS_SMALL( stroker->center.y - control->y ) && in FT_Stroker_ConicTo()
[all …]