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

  /external/freetype/src/base/
ftstroke.c 5 /* FreeType path stroker (body). */
685 /***** STROKER *****/
722 FT_Stroker stroker; local
730 if ( !FT_NEW( stroker ) )
732 stroker->library = library;
734 ft_stroke_border_init( &stroker->borders[0], memory );
735 ft_stroke_border_init( &stroker->borders[1], memory );
737 *astroker = stroker;
745 FT_Stroker_Set( FT_Stroker stroker,
751 stroker->radius = radius
    [all...]
  /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.
208 * Create a new stroker object.
216 * A new stroker object handle. NULL in case of error.
232 * Reset a stroker object's attributes.
235 * stroker ::
236 * The target stroker handle.
256 FT_Stroker_Set( FT_Stroker stroker,
279 FT_Stroker_Rewind( FT_Stroker stroker ); variable
373 FT_Stroker_EndSubPath( FT_Stroker stroker ); variable
632 FT_Stroker_Done( FT_Stroker stroker ); variable
    [all...]
  /external/skia/tests/
PaintTest.cpp 16 SkRect fillR, strokeR;
22 strokeR = stroke.getBounds();
32 REPORTER_ASSERT(reporter, maxR.contains(strokeR));
  /external/skia/src/core/
SkStroke.cpp 587 SkPathStroker stroker(radius, fMiterLimit, this->getCap(),
598 stroker.moveTo(pts[0]);
602 stroker.lineTo(pts[1]);
607 stroker.quadTo(pts[1], pts[2]);
612 stroker.cubicTo(pts[1], pts[2], pts[3]);
616 stroker.close(lastSegment == SkPath::kLine_Verb);
622 stroker.done(dst, lastSegment == SkPath::kLine_Verb);
SkScalerContext.cpp 564 SkStroke stroker; local
567 stroker.setWidth(width);
568 stroker.setMiterLimit(fRec.fMiterLimit);
569 stroker.setJoin((SkPaint::Join)fRec.fStrokeJoin);
570 stroker.setDoFill(SkToBool(fRec.fFlags & kFrameAndFill_Flag));
571 stroker.strokePath(localPath, &outline);
SkPaint.cpp     [all...]
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsContextQt.cpp 731 QPainterPathStroker stroker;
732 QPainterPath newPath = stroker.createStroke(path);
    [all...]

Completed in 205 milliseconds