Code

remove unused function first_bpath
[inkscape.git] / src / display / inkscape-cairo.h
1 #ifndef __INKSCAPE_CAIRO_H__
2 #define __INKSCAPE_CAIRO_H__
4 /*
5  * Helper functions to use cairo with inkscape
6  *
7  * Copyright (C) 2007 bulia byak
8  * Copyright (C) 2008 Johan Engelen
9  *
10  * Released under GNU GPL
11  *
12  */
14 #include <2geom/forward.h>
16 class SPCanvasBuf;
18 cairo_t *nr_create_cairo_context_canvasbuf (NRRectL *area, SPCanvasBuf *b);
19 cairo_t *nr_create_cairo_context (NRRectL *area, NRPixBlock *pb);
20 void feed_curve_to_cairo (cairo_t *ct, NArtBpath const *bpath, NR::Matrix trans, NR::Maybe<NR::Rect> area, bool optimize_stroke, double stroke_width);
21 void feed_path_to_cairo (cairo_t *ct, Geom::Path const &path, Geom::Matrix trans, NR::Maybe<NR::Rect> area, bool optimize_stroke, double stroke_width);
22 void feed_pathvector_to_cairo (cairo_t *ct, Geom::PathVector const &pathv, Geom::Matrix trans, NR::Maybe<NR::Rect> area, bool optimize_stroke, double stroke_width);
24 #endif
25 /*
26   Local Variables:
27   mode:c++
28   c-file-style:"stroustrup"
29   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
30   indent-tabs-mode:nil
31   fill-column:99
32   End:
33 */
34 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :