Lines Matching refs:optimize_stroke
499 * If optimize_stroke == false, the view Rect is not used.
502 feed_curve_to_cairo(cairo_t *cr, Geom::Curve const &c, Geom::Affine const & trans, Geom::Rect view, bool optimize_stroke)
517 if (!optimize_stroke) {
539 if (!optimize_stroke) {
560 if (!optimize_stroke) {
578 //if (!optimize_stroke || a->boundsFast().intersects(view)) {
613 feed_curve_to_cairo(cr, *iter, trans, view, optimize_stroke);
632 feed_curve_to_cairo(ct, *cit, Geom::identity(), Geom::Rect(), false); // optimize_stroke is false, so the view rect is not used
642 feed_path_to_cairo (cairo_t *ct, Geom::Path const &path, Geom::Affine trans, Geom::OptRect area, bool optimize_stroke, double stroke_width)
661 feed_curve_to_cairo(ct, *cit, transshift, view, optimize_stroke);
665 if (!optimize_stroke) {
690 feed_pathvector_to_cairo (cairo_t *ct, Geom::PathVector const &pathv, Geom::Affine trans, Geom::OptRect area, bool optimize_stroke, double stroke_width)
698 feed_path_to_cairo(ct, *it, trans, area, optimize_stroke, stroke_width);