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

/external/chromium_org/third_party/freetype/include/freetype/
H A Dftstroke.h5 /* FreeType path stroker (specification). */
58 * Opaque handler to a path stroker object.
70 * in a stroker.
232 * Create a new stroker object.
240 * A new stroker object handle. NULL in case of error.
256 * Reset a stroker object's attributes.
259 * stroker ::
260 * The target stroker handle.
281 FT_Stroker_Set( FT_Stroker stroker,
294 * Reset a stroker objec
304 FT_Stroker_Rewind( FT_Stroker stroker ); variable
398 FT_Stroker_EndSubPath( FT_Stroker stroker ); variable
657 FT_Stroker_Done( FT_Stroker stroker ); variable
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkStrokeRec.cpp105 SkStroke stroker; local
106 stroker.setCap(fCap);
107 stroker.setJoin(fJoin);
108 stroker.setMiterLimit(fMiterLimit);
109 stroker.setWidth(fWidth);
110 stroker.setDoFill(fStrokeAndFill);
111 stroker.strokePath(src, dst);
/external/freetype/include/
H A Dftstroke.h5 /* FreeType path stroker (specification). */
58 * Opaque handler to a path stroker object.
70 * in a stroker.
232 * Create a new stroker object.
240 * A new stroker object handle. NULL in case of error.
256 * Reset a stroker object's attributes.
259 * stroker ::
260 * The target stroker handle.
281 FT_Stroker_Set( FT_Stroker stroker,
294 * Reset a stroker objec
304 FT_Stroker_Rewind( FT_Stroker stroker ); variable
398 FT_Stroker_EndSubPath( FT_Stroker stroker ); variable
657 FT_Stroker_Done( FT_Stroker stroker ); variable
[all...]
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftstroke.h5 /* FreeType path stroker (specification). */
58 * Opaque handler to a path stroker object.
70 * in a stroker.
232 * Create a new stroker object.
240 * A new stroker object handle. NULL in case of error.
256 * Reset a stroker object's attributes.
259 * stroker ::
260 * The target stroker handle.
281 FT_Stroker_Set( FT_Stroker stroker,
294 * Reset a stroker objec
304 FT_Stroker_Rewind( FT_Stroker stroker ); variable
398 FT_Stroker_EndSubPath( FT_Stroker stroker ); variable
657 FT_Stroker_Done( FT_Stroker stroker ); variable
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftstroke.h5 /* FreeType path stroker (specification). */
58 * Opaque handler to a path stroker object.
70 * in a stroker.
232 * Create a new stroker object.
240 * A new stroker object handle. NULL in case of error.
256 * Reset a stroker object's attributes.
259 * stroker ::
260 * The target stroker handle.
281 FT_Stroker_Set( FT_Stroker stroker,
294 * Reset a stroker objec
304 FT_Stroker_Rewind( FT_Stroker stroker ); variable
398 FT_Stroker_EndSubPath( FT_Stroker stroker ); variable
657 FT_Stroker_Done( FT_Stroker stroker ); variable
[all...]
/external/skia/src/core/
H A DSkStrokeRec.cpp105 SkStroke stroker; local
106 stroker.setCap(fCap);
107 stroker.setJoin(fJoin);
108 stroker.setMiterLimit(fMiterLimit);
109 stroker.setWidth(fWidth);
110 stroker.setDoFill(fStrokeAndFill);
111 stroker.strokePath(src, dst);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dstroker.h37 struct stroker { struct
38 void (*begin)(struct stroker *stroker);
39 void (*process_subpath)(struct stroker *stroker);
40 void (*end)(struct stroker *stroker);
58 struct stroker base;
60 struct stroker stroker; member in struct:dash_stroker
[all...]
H A Darc.c32 #include "stroker.h"
476 struct stroker *stroker = (struct stroker*)cb->user_data; local
477 stroker_line_to(stroker, x, y);
482 struct stroker *stroker = (struct stroker*)cb->user_data; local
483 stroker_curve_to(stroker,
491 struct stroker *stroke local
497 struct stroker *stroker = (struct stroker*)cb->user_data; local
683 arc_stroker_emit(struct arc *arc, struct stroker *stroker, struct matrix *matrix) argument
[all...]
H A Dpath.c29 #include "stroker.h"
1238 struct dash_stroker stroker; local
1267 dash_stroker_init((struct stroker *)&stroker, vg_state);
1269 stroker_init((struct stroker *)&stroker, vg_state);
1271 stroker_begin((struct stroker *)&stroker);
1283 stroker_line_to((struct stroker *)&stroker, x
[all...]
H A Dstroker.c27 #include "stroker.h"
522 static INLINE enum line_join_mode stroker_join_mode(struct stroker *s)
536 static INLINE enum line_join_mode stroker_cap_mode(struct stroker *s)
550 void stroker_emit_move_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
557 stroker->back2_x = stroker->back1_x;
558 stroker->back2_y = stroker->back1_y;
559 stroker
567 stroker_emit_line_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
583 stroker_emit_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1, VGfloat px2, VGfloat py2, VGfloat x, VGfloat y) argument
614 create_round_join(struct stroker *stroker, VGfloat x1, VGfloat y1, VGfloat x2, VGfloat y2, VGfloat width, VGfloat height) argument
632 create_joins(struct stroker *stroker, VGfloat focal_x, VGfloat focal_y, const VGfloat *next_line, enum line_join_mode join) argument
750 stroker_add_segment(struct stroker *stroker, VGPathCommand cmd, const VGfloat *coords, VGint num_coords) argument
798 stroker_move_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
814 stroker_line_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
827 stroker_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1, VGfloat px2, VGfloat py2, VGfloat x, VGfloat y) argument
868 vg_stroke_outline(struct stroke_iterator *it, struct stroker *stroker, VGboolean cap_first, VGfloat *start_tangent) argument
1023 stroker_process_subpath(struct stroker *stroker) argument
1116 dash_pattern(struct dash_stroker *stroker, VGint idx) argument
1126 struct dash_stroker *stroker = (struct dash_stroker *)str; local
1240 default_begin(struct stroker *stroker) argument
1246 default_end(struct stroker *stroker) argument
1253 dash_stroker_begin(struct stroker *stroker) argument
1262 dash_stroker_end(struct stroker *stroker) argument
1271 stroker_init(struct stroker *stroker, struct vg_state *state) argument
1301 struct dash_stroker *stroker = (struct dash_stroker *)str; local
1326 stroker_begin(struct stroker *stroker) argument
1331 stroker_end(struct stroker *stroker) argument
1336 stroker_cleanup(struct stroker *stroker) argument
1342 dash_stroker_cleanup(struct dash_stroker *stroker) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dstroker.h37 struct stroker { struct
38 void (*begin)(struct stroker *stroker);
39 void (*process_subpath)(struct stroker *stroker);
40 void (*end)(struct stroker *stroker);
58 struct stroker base;
60 struct stroker stroker; member in struct:dash_stroker
[all...]
H A Darc.c32 #include "stroker.h"
476 struct stroker *stroker = (struct stroker*)cb->user_data; local
477 stroker_line_to(stroker, x, y);
482 struct stroker *stroker = (struct stroker*)cb->user_data; local
483 stroker_curve_to(stroker,
491 struct stroker *stroke local
497 struct stroker *stroker = (struct stroker*)cb->user_data; local
683 arc_stroker_emit(struct arc *arc, struct stroker *stroker, struct matrix *matrix) argument
[all...]
H A Dpath.c29 #include "stroker.h"
1238 struct dash_stroker stroker; local
1267 dash_stroker_init((struct stroker *)&stroker, vg_state);
1269 stroker_init((struct stroker *)&stroker, vg_state);
1271 stroker_begin((struct stroker *)&stroker);
1283 stroker_line_to((struct stroker *)&stroker, x
[all...]
H A Dstroker.c27 #include "stroker.h"
522 static INLINE enum line_join_mode stroker_join_mode(struct stroker *s)
536 static INLINE enum line_join_mode stroker_cap_mode(struct stroker *s)
550 void stroker_emit_move_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
557 stroker->back2_x = stroker->back1_x;
558 stroker->back2_y = stroker->back1_y;
559 stroker
567 stroker_emit_line_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
583 stroker_emit_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1, VGfloat px2, VGfloat py2, VGfloat x, VGfloat y) argument
614 create_round_join(struct stroker *stroker, VGfloat x1, VGfloat y1, VGfloat x2, VGfloat y2, VGfloat width, VGfloat height) argument
632 create_joins(struct stroker *stroker, VGfloat focal_x, VGfloat focal_y, const VGfloat *next_line, enum line_join_mode join) argument
750 stroker_add_segment(struct stroker *stroker, VGPathCommand cmd, const VGfloat *coords, VGint num_coords) argument
798 stroker_move_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
814 stroker_line_to(struct stroker *stroker, VGfloat x, VGfloat y) argument
827 stroker_curve_to(struct stroker *stroker, VGfloat px1, VGfloat py1, VGfloat px2, VGfloat py2, VGfloat x, VGfloat y) argument
868 vg_stroke_outline(struct stroke_iterator *it, struct stroker *stroker, VGboolean cap_first, VGfloat *start_tangent) argument
1023 stroker_process_subpath(struct stroker *stroker) argument
1116 dash_pattern(struct dash_stroker *stroker, VGint idx) argument
1126 struct dash_stroker *stroker = (struct dash_stroker *)str; local
1240 default_begin(struct stroker *stroker) argument
1246 default_end(struct stroker *stroker) argument
1253 dash_stroker_begin(struct stroker *stroker) argument
1262 dash_stroker_end(struct stroker *stroker) argument
1271 stroker_init(struct stroker *stroker, struct vg_state *state) argument
1301 struct dash_stroker *stroker = (struct dash_stroker *)str; local
1326 stroker_begin(struct stroker *stroker) argument
1331 stroker_end(struct stroker *stroker) argument
1336 stroker_cleanup(struct stroker *stroker) argument
1342 dash_stroker_cleanup(struct dash_stroker *stroker) argument
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftstroke.c5 /* FreeType path stroker (body). */
794 FT_Stroker stroker = NULL; local
802 if ( !FT_NEW( stroker ) )
804 stroker->library = library;
806 ft_stroke_border_init( &stroker->borders[0], memory );
807 ft_stroke_border_init( &stroker->borders[1], memory );
810 *astroker = stroker;
819 FT_Stroker_Set( FT_Stroker stroker, argument
825 stroker->radius = radius;
826 stroker
876 ft_stroker_arcto( FT_Stroker stroker, FT_Int side ) argument
903 ft_stroker_cap( FT_Stroker stroker, FT_Angle angle, FT_Int side ) argument
978 ft_stroker_inside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1040 ft_stroker_outside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1201 ft_stroker_process_corner( FT_Stroker stroker, FT_Fixed line_length ) argument
1238 ft_stroker_subpath_start( FT_Stroker stroker, FT_Angle start_angle, FT_Fixed line_length ) argument
1789 ft_stroker_add_reverse_left( FT_Stroker stroker, FT_Bool open ) argument
2009 FT_Stroker_ExportBorder( FT_Stroker stroker, FT_StrokerBorder border, FT_Outline* outline ) argument
2028 FT_Stroker_Export( FT_Stroker stroker, FT_Outline* outline ) argument
[all...]
/external/freetype/src/base/
H A Dftstroke.c5 /* FreeType path stroker (body). */
794 FT_Stroker stroker = NULL; local
802 if ( !FT_NEW( stroker ) )
804 stroker->library = library;
806 ft_stroke_border_init( &stroker->borders[0], memory );
807 ft_stroke_border_init( &stroker->borders[1], memory );
810 *astroker = stroker;
819 FT_Stroker_Set( FT_Stroker stroker, argument
825 stroker->radius = radius;
826 stroker
876 ft_stroker_arcto( FT_Stroker stroker, FT_Int side ) argument
903 ft_stroker_cap( FT_Stroker stroker, FT_Angle angle, FT_Int side ) argument
978 ft_stroker_inside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1040 ft_stroker_outside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1201 ft_stroker_process_corner( FT_Stroker stroker, FT_Fixed line_length ) argument
1238 ft_stroker_subpath_start( FT_Stroker stroker, FT_Angle start_angle, FT_Fixed line_length ) argument
1789 ft_stroker_add_reverse_left( FT_Stroker stroker, FT_Bool open ) argument
2009 FT_Stroker_ExportBorder( FT_Stroker stroker, FT_StrokerBorder border, FT_Outline* outline ) argument
2028 FT_Stroker_Export( FT_Stroker stroker, FT_Outline* outline ) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftstroke.c5 /* FreeType path stroker (body). */
794 FT_Stroker stroker = NULL; local
802 if ( !FT_NEW( stroker ) )
804 stroker->library = library;
806 ft_stroke_border_init( &stroker->borders[0], memory );
807 ft_stroke_border_init( &stroker->borders[1], memory );
810 *astroker = stroker;
819 FT_Stroker_Set( FT_Stroker stroker, argument
825 stroker->radius = radius;
826 stroker
876 ft_stroker_arcto( FT_Stroker stroker, FT_Int side ) argument
903 ft_stroker_cap( FT_Stroker stroker, FT_Angle angle, FT_Int side ) argument
978 ft_stroker_inside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1040 ft_stroker_outside( FT_Stroker stroker, FT_Int side, FT_Fixed line_length ) argument
1201 ft_stroker_process_corner( FT_Stroker stroker, FT_Fixed line_length ) argument
1238 ft_stroker_subpath_start( FT_Stroker stroker, FT_Angle start_angle, FT_Fixed line_length ) argument
1789 ft_stroker_add_reverse_left( FT_Stroker stroker, FT_Bool open ) argument
2009 FT_Stroker_ExportBorder( FT_Stroker stroker, FT_StrokerBorder border, FT_Outline* outline ) argument
2028 FT_Stroker_Export( FT_Stroker stroker, FT_Outline* outline ) argument
[all...]

Completed in 449 milliseconds