conversion.h | conversion.h | |||
---|---|---|---|---|
skipping to change at line 219 | skipping to change at line 219 | |||
int vips_bandjoin2( VipsImage *in1, VipsImage *in2, VipsImage **out, ... ) | int vips_bandjoin2( VipsImage *in1, VipsImage *in2, VipsImage **out, ... ) | |||
__attribute__((sentinel)); | __attribute__((sentinel)); | |||
int vips_bandmean( VipsImage *in, VipsImage **out, ... ) | int vips_bandmean( VipsImage *in, VipsImage **out, ... ) | |||
__attribute__((sentinel)); | __attribute__((sentinel)); | |||
int vips_recomb( VipsImage *in, VipsImage **out, VipsImage *m, ... ) | int vips_recomb( VipsImage *in, VipsImage **out, VipsImage *m, ... ) | |||
__attribute__((sentinel)); | __attribute__((sentinel)); | |||
int vips_black( VipsImage **out, int width, int height, ... ) | int vips_black( VipsImage **out, int width, int height, ... ) | |||
__attribute__((sentinel)); | __attribute__((sentinel)); | |||
int vips_rot( VipsImage *in, VipsImage **out, VipsAngle angle, ... ) | int vips_rot( VipsImage *in, VipsImage **out, VipsAngle angle, ... ) | |||
__attribute__((sentinel)); | __attribute__((sentinel)); | |||
int vips_ifthenelse( VipsImage *cond, VipsImage *in1, VipsImage *in2, | int vips_ifthenelse( VipsImage *cond, VipsImage *in1, VipsImage *in2, | |||
VipsImage **out, ... ) | VipsImage **out, ... ) | |||
__attribute__((sentinel)); | __attribute__((sentinel)); | |||
int vips_flatten( VipsImage *in, VipsImage **out, ... ) | ||||
__attribute__((sentinel)); | ||||
int im_copy_file( VipsImage *in, VipsImage *out ); | int im_copy_file( VipsImage *in, VipsImage *out ); | |||
int im_scale( VipsImage *in, VipsImage *out ); | int im_scale( VipsImage *in, VipsImage *out ); | |||
int im_msb( VipsImage *in, VipsImage *out ); | int im_msb( VipsImage *in, VipsImage *out ); | |||
int im_msb_band( VipsImage *in, VipsImage *out, int band ); | int im_msb_band( VipsImage *in, VipsImage *out, int band ); | |||
int im_scaleps( VipsImage *in, VipsImage *out ); | int im_scaleps( VipsImage *in, VipsImage *out ); | |||
int im_falsecolour( VipsImage *in, VipsImage *out ); | int im_falsecolour( VipsImage *in, VipsImage *out ); | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 3 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
/* Macros for the header version. | /* Macros for the header version. | |||
*/ | */ | |||
#ifndef VIPS_VERSION_H | #ifndef VIPS_VERSION_H | |||
#define VIPS_VERSION_H | #define VIPS_VERSION_H | |||
#define VIPS_VERSION "7.28.6" | #define VIPS_VERSION "7.28.7" | |||
#define VIPS_VERSION_STRING "7.28.6-Mon Jan 20 23:50:45 MSK 2014" | #define VIPS_VERSION_STRING "7.28.7-Mon Jan 20 23:41:17 MSK 2014" | |||
#define VIPS_MAJOR_VERSION (7) | #define VIPS_MAJOR_VERSION (7) | |||
#define VIPS_MINOR_VERSION (28) | #define VIPS_MINOR_VERSION (28) | |||
#define VIPS_MICRO_VERSION (6) | #define VIPS_MICRO_VERSION (7) | |||
/* Not really anything to do with versions, but this is a handy place to pu t | /* Not really anything to do with versions, but this is a handy place to pu t | |||
* it. | * it. | |||
*/ | */ | |||
#define VIPS_EXEEXT "" | #define VIPS_EXEEXT "" | |||
#endif /*VIPS_VERSION_H*/ | #endif /*VIPS_VERSION_H*/ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||