This commit is contained in:
John Cupitt 2015-11-12 09:15:31 +00:00
parent 03a4e54649
commit d88304a297
3 changed files with 3 additions and 12 deletions

9
TODO
View File

@ -1,3 +1,4 @@
- still not happy about float->int mask conversion in im_vips2mask.c
- looks like we have a race in tiled threadcache? see
@ -94,12 +95,6 @@
- use vips_resize() in vipsthumbnail?
should the sharpening filter be selectable?
- look over vipsthumbnail with a profiler again
- test other cpp arg types
input int works
@ -120,8 +115,6 @@
- fix up aconv
- can we pick the vipsthumbnail int shrink factor more intelligently?
- rewrite im_conv() etc. as vips_conv(), also the mosaicing functions
finally finish --disable-deprecated option

View File

@ -107,7 +107,8 @@ vips_bandjoin_buffer( VipsBandary *bandary, VipsPel *q, VipsPel **p, int width )
*/
int ips = VIPS_IMAGE_SIZEOF_PEL( in[i] );
VipsPel *p1, *q1;
VipsPel * restrict p1;
VipsPel * restrict q1;
int x, z;
q1 = q;

View File

@ -241,9 +241,6 @@ im_vips2imask( IMAGE *in, const char *filename )
if( out->scale == 0 )
out->scale = 1;
/* We should probably do the same for offset, somehow.
*/
return( out );
}