Merge branch 'master' into add-assignment-overloads
This commit is contained in:
commit
eb7768ff61
@ -22,6 +22,7 @@
|
|||||||
- VImage::write() implementation was missing
|
- VImage::write() implementation was missing
|
||||||
- VImage::write() return value changed from void to VImage to help chaining
|
- VImage::write() return value changed from void to VImage to help chaining
|
||||||
- added C++ arithmetic assignment overloads, += etc.
|
- added C++ arithmetic assignment overloads, += etc.
|
||||||
|
- VImage::ifthenelse() with double args was missing =0 on options
|
||||||
|
|
||||||
18/5/16 started 8.3.2
|
18/5/16 started 8.3.2
|
||||||
- more robust vips image reading
|
- more robust vips image reading
|
||||||
|
@ -751,19 +751,19 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
VImage
|
VImage
|
||||||
ifthenelse( double th, VImage el, VOption *options )
|
ifthenelse( double th, VImage el, VOption *options = 0 )
|
||||||
{
|
{
|
||||||
return( ifthenelse( to_vector( th ), el, options ) );
|
return( ifthenelse( to_vector( th ), el, options ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
VImage
|
VImage
|
||||||
ifthenelse( VImage th, double el, VOption *options )
|
ifthenelse( VImage th, double el, VOption *options = 0 )
|
||||||
{
|
{
|
||||||
return( ifthenelse( th, to_vector( el ), options ) );
|
return( ifthenelse( th, to_vector( el ), options ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
VImage
|
VImage
|
||||||
ifthenelse( double th, double el, VOption *options )
|
ifthenelse( double th, double el, VOption *options = 0 )
|
||||||
{
|
{
|
||||||
return( ifthenelse( to_vector( th ), to_vector( el ),
|
return( ifthenelse( to_vector( th ), to_vector( el ),
|
||||||
options ) );
|
options ) );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user