HomeSort by relevance Sort by last modified time
    Searched refs:stroker (Results 1 - 7 of 7) sorted by null

  /external/freetype/include/freetype/
ftstroke.h 5 /* FreeType path stroker (specification). */
36 * Glyph Stroker
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,
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/
SkStrokeRec.cpp 97 SkStroke stroker; local
98 stroker.setCap(fCap);
99 stroker.setJoin(fJoin);
100 stroker.setMiterLimit(fMiterLimit);
101 stroker.setWidth(fWidth);
102 stroker.setDoFill(fStrokeAndFill);
103 stroker.strokePath(src, dst);
SkStroke.cpp 646 SkPathStroker stroker(src, radius, fMiterLimit, this->getCap(),
657 stroker.moveTo(pts[0]);
661 stroker.lineTo(pts[1]);
666 stroker.quadTo(pts[1], pts[2]);
671 stroker.cubicTo(pts[1], pts[2], pts[3]);
675 stroker.close(lastSegment == SkPath::kLine_Verb);
681 stroker.done(dst, lastSegment == SkPath::kLine_Verb);
702 // TODO: fix the stroker to make this assumption true (without making
  /external/freetype/src/base/
ftstroke.c 5 /* FreeType path stroker (body). */
754 /***** STROKER *****/
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,
825 stroker->radius = radius
    [all...]
  /external/skia/legacy/src/core/
SkStroke.cpp 574 SkPathStroker stroker(radius, fMiterLimit, this->getCap(),
585 stroker.moveTo(pts[0]);
589 stroker.lineTo(pts[1]);
594 stroker.quadTo(pts[1], pts[2]);
599 stroker.cubicTo(pts[1], pts[2], pts[3]);
603 stroker.close(lastSegment == SkPath::kLine_Verb);
609 stroker.done(dst, lastSegment == SkPath::kLine_Verb);
630 // TODO: fix the stroker to make this assumption true (without making
SkScalerContext.cpp 653 SkStroke stroker; local
656 stroker.setWidth(width);
657 stroker.setMiterLimit(fRec.fMiterLimit);
658 stroker.setJoin((SkPaint::Join)fRec.fStrokeJoin);
659 stroker.setDoFill(SkToBool(fRec.fFlags & kFrameAndFill_Flag));
660 stroker.strokePath(localPath, &outline);
SkPaint.cpp     [all...]

Completed in 522 milliseconds