Searched defs:stroker (Results 1 - 4 of 4) sorted by relevance

/external/freetype/include/freetype/
H A Dftstroke.h5 /* FreeType path stroker (specification). */
90 * Opaque handle to a path stroker object.
102 * in a stroker.
264 * Create a new stroker object.
272 * A new stroker object handle. NULL in case of error.
288 * Reset a stroker object's attributes.
291 * stroker ::
292 * The target stroker handle.
315 FT_Stroker_Set( FT_Stroker stroker,
328 * Reset a stroker objec
338 FT_Stroker_Rewind( FT_Stroker stroker ); variable
432 FT_Stroker_EndSubPath( FT_Stroker stroker ); variable
691 FT_Stroker_Done( FT_Stroker stroker ); variable
[all...]
/external/skia/src/core/
H A DSkStrokeRec.cpp110 SkStroke stroker; local
111 stroker.setCap((SkPaint::Cap)fCap);
112 stroker.setJoin((SkPaint::Join)fJoin);
113 stroker.setMiterLimit(fMiterLimit);
114 stroker.setWidth(fWidth);
115 stroker.setDoFill(fStrokeAndFill);
117 stroker.setResScale(gDebugStrokerErrorSet ? gDebugStrokerError : fResScale);
119 stroker.setResScale(fResScale);
121 stroker.strokePath(src, dst);
/external/skqp/src/core/
H A DSkStrokeRec.cpp110 SkStroke stroker; local
111 stroker.setCap((SkPaint::Cap)fCap);
112 stroker.setJoin((SkPaint::Join)fJoin);
113 stroker.setMiterLimit(fMiterLimit);
114 stroker.setWidth(fWidth);
115 stroker.setDoFill(fStrokeAndFill);
117 stroker.setResScale(gDebugStrokerErrorSet ? gDebugStrokerError : fResScale);
119 stroker.setResScale(fResScale);
121 stroker.strokePath(src, dst);
/external/freetype/src/base/
H A Dftstroke.c5 /* FreeType path stroker (body). */
805 FT_Stroker stroker = NULL; local
816 if ( !FT_NEW( stroker ) )
818 stroker->library = library;
820 ft_stroke_border_init( &stroker->borders[0], memory );
821 ft_stroke_border_init( &stroker->borders[1], memory );
824 *astroker = stroker;
833 FT_Stroker_Set( FT_Stroker stroker, argument
839 if ( !stroker )
842 stroker
893 ft_stroker_arcto( FT_Stroker stroker, FT_Int side ) argument
920 ft_stroker_cap( FT_Stroker stroker, FT_Angle angle, FT_Int side ) argument
995 ft_stroker_inside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1060 ft_stroker_outside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1221 ft_stroker_process_corner( FT_Stroker stroker, FT_Fixed line_length ) argument
1255 ft_stroker_subpath_start( FT_Stroker stroker, FT_Angle start_angle, FT_Fixed line_length ) argument
1824 ft_stroker_add_reverse_left( FT_Stroker stroker, FT_Bool open ) argument
2057 FT_Stroker_ExportBorder( FT_Stroker stroker, FT_StrokerBorder border, FT_Outline* outline ) argument
2079 FT_Stroker_Export( FT_Stroker stroker, FT_Outline* outline ) argument
[all...]

Completed in 198 milliseconds