HomeSort by relevance Sort by last modified time
    Searched full:stroker (Results 1 - 6 of 6) 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/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/tests/
PaintTest.cpp 81 SkRect fillR, strokeR;
87 strokeR = stroke.getBounds();
97 REPORTER_ASSERT(reporter, maxR.contains(strokeR));
  /external/skia/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 635 SkStroke stroker; local
638 stroker.setWidth(width);
639 stroker.setMiterLimit(fRec.fMiterLimit);
640 stroker.setJoin((SkPaint::Join)fRec.fStrokeJoin);
641 stroker.setDoFill(SkToBool(fRec.fFlags & kFrameAndFill_Flag));
642 stroker.strokePath(localPath, &outline);
SkPaint.cpp     [all...]

Completed in 810 milliseconds