Chantal Racette's brand new strongly antialiasing resampler vsqbs

This commit is contained in:
Nicolas Robidoux 2010-05-29 13:09:13 +00:00
parent d0573100b3
commit 4aac6243b5
2 changed files with 6 additions and 6 deletions

View File

@ -13,9 +13,9 @@ libresample_la_SOURCES = \
transform.c \ transform.c \
resample_dispatch.c \ resample_dispatch.c \
bicubic.cpp \ bicubic.cpp \
nohalo.cpp \
lbb.cpp \ lbb.cpp \
snohalo.cpp \ nohalo.cpp \
vsqbs.cpp \
templates.h templates.h
else else
@ -31,9 +31,9 @@ libresample_la_SOURCES = \
EXTRA_DIST = \ EXTRA_DIST = \
bicubic.cpp \ bicubic.cpp \
nohalo.cpp \
lbb.cpp \ lbb.cpp \
snohalo.cpp \ nohalo.cpp \
vsqbs.cpp \
templates.h templates.h
endif endif

View File

@ -512,7 +512,7 @@ vips__interpolate_init( void )
extern GType vips_interpolate_bicubic_get_type( void ); extern GType vips_interpolate_bicubic_get_type( void );
extern GType vips_interpolate_nohalo_get_type( void ); extern GType vips_interpolate_nohalo_get_type( void );
extern GType vips_interpolate_lbb_get_type( void ); extern GType vips_interpolate_lbb_get_type( void );
extern GType vips_interpolate_snohalo_get_type( void ); extern GType vips_interpolate_vsqbs_get_type( void );
vips_interpolate_nearest_get_type(); vips_interpolate_nearest_get_type();
vips_interpolate_bilinear_get_type(); vips_interpolate_bilinear_get_type();
@ -521,7 +521,7 @@ vips__interpolate_init( void )
vips_interpolate_bicubic_get_type(); vips_interpolate_bicubic_get_type();
vips_interpolate_nohalo_get_type(); vips_interpolate_nohalo_get_type();
vips_interpolate_lbb_get_type(); vips_interpolate_lbb_get_type();
vips_interpolate_snohalo_get_type(); vips_interpolate_vsqbs_get_type();
#endif /*ENABLE_CXX*/ #endif /*ENABLE_CXX*/
} }