sync
This commit is contained in:
parent
03a4e54649
commit
d88304a297
9
TODO
9
TODO
@ -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
|
- 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
|
- test other cpp arg types
|
||||||
|
|
||||||
input int works
|
input int works
|
||||||
@ -120,8 +115,6 @@
|
|||||||
|
|
||||||
- fix up aconv
|
- fix up aconv
|
||||||
|
|
||||||
- can we pick the vipsthumbnail int shrink factor more intelligently?
|
|
||||||
|
|
||||||
- rewrite im_conv() etc. as vips_conv(), also the mosaicing functions
|
- rewrite im_conv() etc. as vips_conv(), also the mosaicing functions
|
||||||
|
|
||||||
finally finish --disable-deprecated option
|
finally finish --disable-deprecated option
|
||||||
|
@ -107,7 +107,8 @@ vips_bandjoin_buffer( VipsBandary *bandary, VipsPel *q, VipsPel **p, int width )
|
|||||||
*/
|
*/
|
||||||
int ips = VIPS_IMAGE_SIZEOF_PEL( in[i] );
|
int ips = VIPS_IMAGE_SIZEOF_PEL( in[i] );
|
||||||
|
|
||||||
VipsPel *p1, *q1;
|
VipsPel * restrict p1;
|
||||||
|
VipsPel * restrict q1;
|
||||||
int x, z;
|
int x, z;
|
||||||
|
|
||||||
q1 = q;
|
q1 = q;
|
||||||
|
@ -241,9 +241,6 @@ im_vips2imask( IMAGE *in, const char *filename )
|
|||||||
if( out->scale == 0 )
|
if( out->scale == 0 )
|
||||||
out->scale = 1;
|
out->scale = 1;
|
||||||
|
|
||||||
/* We should probably do the same for offset, somehow.
|
|
||||||
*/
|
|
||||||
|
|
||||||
return( out );
|
return( out );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user