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