1 #ifndef __NR_PIXBLOCK_LINE_H__
2 #define __NR_PIXBLOCK_LINE_H__
4 /*
5 * Pixel buffer rendering library
6 *
7 * Authors:
8 * Lauris Kaplinski <lauris@kaplinski.com>
9 *
10 * This code is in public domain
11 */
13 #include <libnr/nr-pixblock.h>
15 void nr_pixblock_draw_line_rgba32 (NRPixBlock *d, long x0, long y0, long x1, long y1, short first, unsigned long rgba);
17 #endif
19 /*
20 Local Variables:
21 mode:c++
22 c-file-style:"stroustrup"
23 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
24 indent-tabs-mode:nil
25 fill-column:99
26 End:
27 */
28 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :