OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stroker
(Results
1 - 5
of
5
) 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/src/core/
SkScalerContext.cpp
562
SkStroke
stroker
;
local
565
stroker
.setWidth(width);
566
stroker
.setMiterLimit(fRec.fMiterLimit);
567
stroker
.setJoin((SkPaint::Join)fRec.fStrokeJoin);
568
stroker
.setDoFill(SkToBool(fRec.fFlags & kFrameAndFill_Flag));
569
stroker
.strokePath(localPath, &outline);
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);
SkPaint.cpp
[
all
...]
Completed in 180 milliseconds