commit changes from draw branch
[imager.git] / imrender.h
index 213362d14eaa823e8c163ef45bf35696e5a26dbe..9ded02232eb238f8b684011a6cc826a35d55336f 100644 (file)
@@ -10,5 +10,14 @@ i_render_done(i_render *r);
 extern void
 i_render_color(i_render *r, int x, int y, int width, unsigned char const *src,
                i_color const *color);
+extern void
+i_render_fill(i_render *r, int x, int y, int width, unsigned char const *src,
+             i_fill_t *fill);
+extern void
+i_render_line(i_render *r, int x, int y, int width, const i_sample_t *src,
+             i_color *line, i_fill_combine_f combine);
+extern void
+i_render_linef(i_render *r, int x, int y, int width, const double *src,
+             i_fcolor *line, i_fill_combinef_f combine);
 
 #endif