Fix test failure on ARM-based Windows

The optional parameters of vips_gaussnoise were incorrectly
passed within vips_fractsurf. This was discovered when running
the libvips testsuite on Windows 10 IoT (ARM32).
This commit is contained in:
Kleis Auke Wolthuizen 2020-09-25 12:52:31 +02:00 committed by John Cupitt
parent 8d52c8b761
commit 01765df53c
1 changed files with 4 additions and 2 deletions

View File

@ -74,8 +74,10 @@ vips_fractsurf_build( VipsObject *object )
if( VIPS_OBJECT_CLASS( vips_fractsurf_parent_class )->build( object ) )
return( -1 );
if( vips_gaussnoise( &t[0],
fractsurf->width, fractsurf->height, 0.0, 1.0, NULL ) ||
if( vips_gaussnoise( &t[0], fractsurf->width, fractsurf->height,
"mean", 0.0,
"sigma", 1.0,
NULL ) ||
vips_mask_fractal( &t[1], fractsurf->width, fractsurf->height,
fractsurf->fractal_dimension, NULL ) ||
vips_freqmult( t[0], t[1], &t[2], NULL ) ||