remove dead proto

vips_draw_line_mask() was never implemented .. use
vips__draw_line_direct() instead.
This commit is contained in:
John Cupitt 2015-01-02 21:34:34 +00:00
parent 46d8b93bc3
commit ad6f42c869
2 changed files with 1 additions and 9 deletions

View File

@ -1045,8 +1045,7 @@
<row>
<entry>draw_line</entry>
<entry>draw a line on an image</entry>
<entry>vips_draw_line(), vips_draw_line1(),
vips_draw_line_mask(), vips_draw_line_mask1()</entry>
<entry>vips_draw_line(), vips_draw_line1()</entry>
</row>
<row>
<entry>draw_circle</entry>

View File

@ -71,13 +71,6 @@ int vips_draw_line( VipsImage *image,
int vips_draw_line1( VipsImage *image,
double ink, int x1, int y1, int x2, int y2, ... )
__attribute__((sentinel));
int vips_draw_line_mask( VipsImage *image,
double *ink, int n, int x1, int y1, int x2, int y2,
VipsImage *mask, ... )
__attribute__((sentinel));
int vips_draw_line_mask1( VipsImage *image,
double ink, int x1, int y1, int x2, int y2, VipsImage *mask, ... )
__attribute__((sentinel));
int vips_draw_circle( VipsImage *image,
double *ink, int n, int cx, int cy, int radius, ... )