move VipsFormat to deprecated
This commit is contained in:
parent
3e45e2cd6b
commit
14734596a1
@ -63,6 +63,7 @@
|
|||||||
- added openslide support (Benjamin Gilbert)
|
- added openslide support (Benjamin Gilbert)
|
||||||
- allow new-style load/save options in filenames to
|
- allow new-style load/save options in filenames to
|
||||||
vips_image_new_from_file() etc.
|
vips_image_new_from_file() etc.
|
||||||
|
- VipsFormat is deprecated
|
||||||
|
|
||||||
12/10/11 started 7.26.6
|
12/10/11 started 7.26.6
|
||||||
- NOCACHE was not being set correctly on OS X causing performance
|
- NOCACHE was not being set correctly on OS X causing performance
|
||||||
|
8
TODO
8
TODO
@ -2,12 +2,8 @@
|
|||||||
|
|
||||||
- test rad read/write
|
- test rad read/write
|
||||||
|
|
||||||
- rad save should auto pack to CODING RAD
|
|
||||||
|
|
||||||
- test matio load
|
- test matio load
|
||||||
|
|
||||||
- radiance to go still
|
|
||||||
|
|
||||||
- saverawfd should be renamed saveraw_fd, cf. pngsave_buffer
|
- saverawfd should be renamed saveraw_fd, cf. pngsave_buffer
|
||||||
|
|
||||||
- remove uses of vips_image_pio_output(), this is done for you by generate
|
- remove uses of vips_image_pio_output(), this is done for you by generate
|
||||||
@ -33,10 +29,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
- make the old format/vips.c into a stub as well?
|
|
||||||
|
|
||||||
move format/* to deprecated
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -698,7 +698,6 @@ AC_OUTPUT([
|
|||||||
libvips/conversion/Makefile
|
libvips/conversion/Makefile
|
||||||
libvips/convolution/Makefile
|
libvips/convolution/Makefile
|
||||||
libvips/deprecated/Makefile
|
libvips/deprecated/Makefile
|
||||||
libvips/format/Makefile
|
|
||||||
libvips/foreign/Makefile
|
libvips/foreign/Makefile
|
||||||
libvips/freq_filt/Makefile
|
libvips/freq_filt/Makefile
|
||||||
libvips/histograms_lut/Makefile
|
libvips/histograms_lut/Makefile
|
||||||
|
@ -19,7 +19,6 @@ SUBDIRS = \
|
|||||||
deprecated \
|
deprecated \
|
||||||
convolution \
|
convolution \
|
||||||
$(C_COMPILE_DIR) \
|
$(C_COMPILE_DIR) \
|
||||||
format \
|
|
||||||
freq_filt \
|
freq_filt \
|
||||||
histograms_lut \
|
histograms_lut \
|
||||||
inplace \
|
inplace \
|
||||||
@ -52,7 +51,6 @@ libvips_la_LIBADD = \
|
|||||||
convolution/libconvolution.la \
|
convolution/libconvolution.la \
|
||||||
deprecated/libdeprecated.la \
|
deprecated/libdeprecated.la \
|
||||||
$(C_LIB) \
|
$(C_LIB) \
|
||||||
format/libformat.la \
|
|
||||||
foreign/libforeign.la \
|
foreign/libforeign.la \
|
||||||
freq_filt/libfreq_filt.la \
|
freq_filt/libfreq_filt.la \
|
||||||
histograms_lut/libhistograms_lut.la \
|
histograms_lut/libhistograms_lut.la \
|
||||||
|
@ -43,6 +43,26 @@ libdeprecated_la_SOURCES = \
|
|||||||
im_matmul.c \
|
im_matmul.c \
|
||||||
im_mattrn.c \
|
im_mattrn.c \
|
||||||
matalloc.c \
|
matalloc.c \
|
||||||
mask_dispatch.c
|
mask_dispatch.c \
|
||||||
|
fits.c \
|
||||||
|
format.c \
|
||||||
|
format_dispatch.c \
|
||||||
|
im_analyze2vips.c \
|
||||||
|
im_csv2vips.c \
|
||||||
|
im_exr2vips.c \
|
||||||
|
im_jpeg2vips.c \
|
||||||
|
im_magick2vips.c \
|
||||||
|
im_png2vips.c \
|
||||||
|
im_ppm2vips.c \
|
||||||
|
im_tiff2vips.c \
|
||||||
|
im_tile_cache.c \
|
||||||
|
im_vips2csv.c \
|
||||||
|
im_vips2jpeg.c \
|
||||||
|
im_vips2png.c \
|
||||||
|
im_vips2ppm.c \
|
||||||
|
im_vips2tiff.c \
|
||||||
|
matlab.c \
|
||||||
|
radiance.c \
|
||||||
|
raw.c
|
||||||
|
|
||||||
INCLUDES = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
INCLUDES = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
noinst_LTLIBRARIES = libformat.la
|
|
||||||
|
|
||||||
libformat_la_SOURCES = \
|
|
||||||
format.c \
|
|
||||||
raw.c \
|
|
||||||
format_dispatch.c \
|
|
||||||
im_analyze2vips.c \
|
|
||||||
im_csv2vips.c \
|
|
||||||
im_exr2vips.c \
|
|
||||||
im_jpeg2vips.c \
|
|
||||||
im_magick2vips.c \
|
|
||||||
im_png2vips.c \
|
|
||||||
im_ppm2vips.c \
|
|
||||||
im_tiff2vips.c \
|
|
||||||
im_tile_cache.c \
|
|
||||||
im_vips2csv.c \
|
|
||||||
im_vips2jpeg.c \
|
|
||||||
im_vips2png.c \
|
|
||||||
im_vips2ppm.c \
|
|
||||||
im_vips2tiff.c \
|
|
||||||
matlab.c \
|
|
||||||
fits.c \
|
|
||||||
radiance.c
|
|
||||||
|
|
||||||
INCLUDES = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
|
Loading…
Reference in New Issue
Block a user