stats operations are sequential
This commit is contained in:
parent
6da3752815
commit
e809f9d169
@ -6,6 +6,7 @@
|
|||||||
- redo im_draw_circle(), im_draw_flood(), im_draw_line(), im_draw_mask() as
|
- redo im_draw_circle(), im_draw_flood(), im_draw_line(), im_draw_mask() as
|
||||||
classes
|
classes
|
||||||
- better rounding in vips_flatten()
|
- better rounding in vips_flatten()
|
||||||
|
- VipsStatistic operations are sequential
|
||||||
|
|
||||||
22/1/14 started 7.38.3
|
22/1/14 started 7.38.3
|
||||||
- undeprecate VIPS_MASK_IDEAL_HIGHPASS and friends, ruby-vips was using them,
|
- undeprecate VIPS_MASK_IDEAL_HIGHPASS and friends, ruby-vips was using them,
|
||||||
|
@ -373,6 +373,13 @@
|
|||||||
fun:rb_file_expand_path
|
fun:rb_file_expand_path
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
ruby5
|
||||||
|
Memcheck:Value8
|
||||||
|
...
|
||||||
|
fun:rb_enc_str_new
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -151,6 +151,7 @@ vips_statistic_class_init( VipsStatisticClass *class )
|
|||||||
{
|
{
|
||||||
GObjectClass *gobject_class = G_OBJECT_CLASS( class );
|
GObjectClass *gobject_class = G_OBJECT_CLASS( class );
|
||||||
VipsObjectClass *vobject_class = VIPS_OBJECT_CLASS( class );
|
VipsObjectClass *vobject_class = VIPS_OBJECT_CLASS( class );
|
||||||
|
VipsOperationClass *operation_class = VIPS_OPERATION_CLASS( class );
|
||||||
|
|
||||||
gobject_class->set_property = vips_object_set_property;
|
gobject_class->set_property = vips_object_set_property;
|
||||||
gobject_class->get_property = vips_object_get_property;
|
gobject_class->get_property = vips_object_get_property;
|
||||||
@ -159,6 +160,8 @@ vips_statistic_class_init( VipsStatisticClass *class )
|
|||||||
vobject_class->description = _( "VIPS statistic operations" );
|
vobject_class->description = _( "VIPS statistic operations" );
|
||||||
vobject_class->build = vips_statistic_build;
|
vobject_class->build = vips_statistic_build;
|
||||||
|
|
||||||
|
operation_class->flags = VIPS_OPERATION_SEQUENTIAL_UNBUFFERED;
|
||||||
|
|
||||||
VIPS_ARG_IMAGE( class, "in", 0,
|
VIPS_ARG_IMAGE( class, "in", 0,
|
||||||
_( "Input" ),
|
_( "Input" ),
|
||||||
_( "Input image" ),
|
_( "Input image" ),
|
||||||
|
Loading…
Reference in New Issue
Block a user