operation flags were not disjoint

meaning CACHE / NOCACHE was not working correctly
This commit is contained in:
John Cupitt 2013-11-09 11:54:33 +00:00
parent 63c1efc3b4
commit f8f61fedf3
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
- reverse similarity rotation direction to match the convention used
elsewhere in vips
- fix blocked caching of sequential load operations
- fix cache flags
10/10/13 started 7.36.2
- better jpeg startup

View File

@ -41,7 +41,7 @@ typedef enum /*< flags >*/ {
VIPS_OPERATION_NONE = 0,
VIPS_OPERATION_SEQUENTIAL = 1,
VIPS_OPERATION_SEQUENTIAL_UNBUFFERED = 2,
VIPS_OPERATION_NOCACHE = 3
VIPS_OPERATION_NOCACHE = 4
} VipsOperationFlags;
#define VIPS_TYPE_OPERATION (vips_operation_get_type())