Lines Matching refs:PSPathElement
86 struct PSPathElement struct
93 PSPathElement( PathSegmentType i_eType ) : type( i_eType ), in PSPathElement() function
881 static int BSplineToPSPath(ControlPoint *srcA, int srcCount, PSPathElement **path) in BSplineToPSPath()
883 std::vector< PSPathElement > aPathList; in BSplineToPSPath()
885 PSPathElement p( PS_NOOP ); in BSplineToPSPath()
911 p = PSPathElement(PS_MOVETO); in BSplineToPSPath()
937 p = PSPathElement(PS_CURVETO); in BSplineToPSPath()
950 p = PSPathElement(PS_LINETO); in BSplineToPSPath()
964 p = PSPathElement(PS_CURVETO); in BSplineToPSPath()
981 aPathList.push_back( PSPathElement(PS_CLOSEPATH) ); in BSplineToPSPath()
1000 *path = (PSPathElement*)calloc(nPathCount, sizeof(PSPathElement)); in BSplineToPSPath()
1002 memcpy( *path, &aPathList[0], nPathCount * sizeof(PSPathElement) ); in BSplineToPSPath()
1997 PSPathElement *path; in CreateT3FromTTGlyphs()