Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / display / nr-plain-stuff.h
1 #ifndef __NR_PLAIN_STUFF_H__
2 #define __NR_PLAIN_STUFF_H__
4 /*
5  * Miscellaneous simple rendering utilities
6  *
7  * Author:
8  *   Lauris Kaplinski <lauris@ximian.com>
9  *
10  * Copyright (C) 2001 Lauris Kaplinski and Ximian, Inc.
11  *
12  * Released under GNU GPL
13  */
15 #include <glib/gtypes.h>
17 void nr_render_checkerboard_rgb (guchar *px, gint w, gint h, gint rs, gint xoff, gint yoff);
18 void nr_render_checkerboard_rgb_custom (guchar *px, gint w, gint h, gint rs, gint xoff, gint yoff, guint32 c0, guint32 c1, gint sizep2);
20 void nr_render_rgba32_rgb (guchar *px, gint w, gint h, gint rs, gint xoff, gint yoff, guint32 c);
22 #endif
24 /*
25   Local Variables:
26   mode:c++
27   c-file-style:"stroustrup"
28   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
29   indent-tabs-mode:nil
30   fill-column:99
31   End:
32 */
33 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :