Lines Matching refs:stroke_polygon
5632 *stroke_polygon; in DrawStrokePolygon() local
5659 stroke_polygon=TraceStrokePolygon(image,draw_info,p); in DrawStrokePolygon()
5660 if (stroke_polygon == (PrimitiveInfo *) NULL) in DrawStrokePolygon()
5663 stroke_polygon=(PrimitiveInfo *) RelinquishMagickMemory(stroke_polygon); in DrawStrokePolygon()
5666 status&=DrawPolygonPrimitive(image,clone_info,stroke_polygon,exception); in DrawStrokePolygon()
5667 stroke_polygon=(PrimitiveInfo *) RelinquishMagickMemory(stroke_polygon); in DrawStrokePolygon()
7050 *stroke_polygon; in TraceStrokePolygon() local
7104 stroke_polygon=(PrimitiveInfo *) AcquireCriticalMemory( in TraceStrokePolygon()
7105 sizeof(*stroke_polygon)); in TraceStrokePolygon()
7106 stroke_polygon[0]=polygon_primitive[0]; in TraceStrokePolygon()
7107 stroke_polygon[0].coordinates=0; in TraceStrokePolygon()
7110 return(stroke_polygon); in TraceStrokePolygon()
7420 stroke_polygon=(PrimitiveInfo *) AcquireQuantumMemory((size_t) in TraceStrokePolygon()
7421 (p+q+2UL*closed_path+2UL),sizeof(*stroke_polygon)); in TraceStrokePolygon()
7422 if (stroke_polygon != (PrimitiveInfo *) NULL) in TraceStrokePolygon()
7426 stroke_polygon[i]=polygon_primitive[0]; in TraceStrokePolygon()
7427 stroke_polygon[i].point=path_p[i]; in TraceStrokePolygon()
7431 stroke_polygon[i]=polygon_primitive[0]; in TraceStrokePolygon()
7432 stroke_polygon[i].point=stroke_polygon[0].point; in TraceStrokePolygon()
7437 stroke_polygon[i]=polygon_primitive[0]; in TraceStrokePolygon()
7438 stroke_polygon[i].point=path_q[p+q+closed_path-(i+1)]; in TraceStrokePolygon()
7442 stroke_polygon[i]=polygon_primitive[0]; in TraceStrokePolygon()
7443 stroke_polygon[i].point=stroke_polygon[p+closed_path].point; in TraceStrokePolygon()
7446 stroke_polygon[i]=polygon_primitive[0]; in TraceStrokePolygon()
7447 stroke_polygon[i].point=stroke_polygon[0].point; in TraceStrokePolygon()
7449 stroke_polygon[i].primitive=UndefinedPrimitive; in TraceStrokePolygon()
7450 stroke_polygon[0].coordinates=(size_t) (p+q+2*closed_path+1); in TraceStrokePolygon()
7455 return(stroke_polygon); in TraceStrokePolygon()