image.h | image.h | |||
---|---|---|---|---|
skipping to change at line 410 | skipping to change at line 410 | |||
/* An image has been modified in some way and all caches | /* An image has been modified in some way and all caches | |||
* need dropping. | * need dropping. | |||
*/ | */ | |||
void (*invalidate)( VipsImage *image ); | void (*invalidate)( VipsImage *image ); | |||
} VipsImageClass; | } VipsImageClass; | |||
GType vips_image_get_type( void ); | GType vips_image_get_type( void ); | |||
extern const size_t vips__image_sizeof_bandformat[]; | extern const guint64 vips__image_sizeof_bandformat[]; | |||
/* Pixel address calculation macros. | /* Pixel address calculation macros. | |||
*/ | */ | |||
#define VIPS_IMAGE_SIZEOF_ELEMENT( I ) \ | #define VIPS_IMAGE_SIZEOF_ELEMENT( I ) \ | |||
(vips__image_sizeof_bandformat[(I)->BandFmt]) | (vips__image_sizeof_bandformat[(I)->BandFmt]) | |||
#define VIPS_IMAGE_SIZEOF_PEL( I ) \ | #define VIPS_IMAGE_SIZEOF_PEL( I ) \ | |||
(VIPS_IMAGE_SIZEOF_ELEMENT( I ) * (I)->Bands) | (VIPS_IMAGE_SIZEOF_ELEMENT( I ) * (I)->Bands) | |||
#define VIPS_IMAGE_SIZEOF_LINE( I ) \ | #define VIPS_IMAGE_SIZEOF_LINE( I ) \ | |||
(VIPS_IMAGE_SIZEOF_PEL( I ) * (I)->Xsize) | (VIPS_IMAGE_SIZEOF_PEL( I ) * (I)->Xsize) | |||
#define VIPS_IMAGE_SIZEOF_IMAGE( I ) \ | #define VIPS_IMAGE_SIZEOF_IMAGE( I ) \ | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 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.26.6" | #define VIPS_VERSION "7.26.7" | |||
#define VIPS_VERSION_STRING "7.26.6-Tue Jan 21 00:10:34 MSK 2014" | #define VIPS_VERSION_STRING "7.26.7-Tue Jan 21 00:08:42 MSK 2014" | |||
#define VIPS_MAJOR_VERSION (7) | #define VIPS_MAJOR_VERSION (7) | |||
#define VIPS_MINOR_VERSION (26) | #define VIPS_MINOR_VERSION (26) | |||
#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 | |||