deprecate vips7 resample dispatch

This commit is contained in:
John Cupitt 2012-12-18 13:43:46 +00:00
parent e6eb08173f
commit dbdf9c8d83
5 changed files with 14 additions and 16 deletions

View File

@ -3,6 +3,7 @@ noinst_LTLIBRARIES = libdeprecated.la
libdeprecated_la_SOURCES = \
im_linreg.c \
im_point_bilinear.c \
resample_dispatch.c \
im_openslide2vips.c \
im_lab_morph.c \
deprecated_dispatch.c \

View File

@ -39,6 +39,14 @@ extern "C" {
#include <vips/vips.h>
int im_match_linear( VipsImage *ref, VipsImage *sec, VipsImage *out,
int xr1, int yr1, int xs1, int ys1,
int xr2, int yr2, int xs2, int ys2 );
int im_match_linear_search( VipsImage *ref, VipsImage *sec, VipsImage *out,
int xr1, int yr1, int xs1, int ys1,
int xr2, int yr2, int xs2, int ys2,
int hwindowsize, int hsearchsize );
int im_lrmerge( VipsImage *ref, VipsImage *sec, VipsImage *out,
int dx, int dy, int mwidth );
int im_tbmerge( VipsImage *ref, VipsImage *sec, VipsImage *out,

View File

@ -37,18 +37,6 @@
extern "C" {
#endif /*__cplusplus*/
int im_match_linear( VipsImage *ref, VipsImage *sec, VipsImage *out,
int xr1, int yr1, int xs1, int ys1,
int xr2, int yr2, int xs2, int ys2 );
int im_match_linear_search( VipsImage *ref, VipsImage *sec, VipsImage *out,
int xr1, int yr1, int xs1, int ys1,
int xr2, int yr2, int xs2, int ys2,
int hwindowsize, int hsearchsize );
int vips_quadratic( VipsImage *in, VipsImage **out, VipsImage *coeff, ... )
__attribute__((sentinel));
int vips_shrink( VipsImage *in, VipsImage **out,
double xshrink, double yshrink, ... )
__attribute__((sentinel));
@ -56,6 +44,9 @@ int vips_affine( VipsImage *in, VipsImage **out,
double a, double b, double c, double d, ... )
__attribute__((sentinel));
int vips_quadratic( VipsImage *in, VipsImage **out, VipsImage *coeff, ... )
__attribute__((sentinel));
#ifdef __cplusplus
}
#endif /*__cplusplus*/

View File

@ -12,7 +12,6 @@ libresample_la_SOURCES = \
shrink.c \
interpolate.c \
transform.c \
resample_dispatch.c \
bicubic.cpp \
lbb.cpp \
nohalo.cpp \
@ -25,10 +24,9 @@ libresample_la_SOURCES = \
resample.c \
resample.h \
shrink.c \
im_affine.c \
affine.c \
interpolate.c \
transform.c \
resample_dispatch.c
transform.c
EXTRA_DIST = \
bicubic.cpp \