Home
last modified time | relevance | path

Searched refs:sample_threshold (Results 1 – 7 of 7) sorted by relevance

/dports/graphics/gimp-app/gimp-2.10.30/libgimp/
H A Dgimpcontext_pdb.h122 … gimp_context_set_sample_threshold (gdouble sample_threshold);
124 … gimp_context_set_sample_threshold_int (gint sample_threshold);
H A Dgimpcontext_pdb.c2735 gdouble sample_threshold = 0.0; in gimp_context_get_sample_threshold() local
2742 sample_threshold = return_vals[1].data.d_float; in gimp_context_get_sample_threshold()
2746 return sample_threshold; in gimp_context_get_sample_threshold()
2771 gimp_context_set_sample_threshold (gdouble sample_threshold) in gimp_context_set_sample_threshold() argument
2779 GIMP_PDB_FLOAT, sample_threshold, in gimp_context_set_sample_threshold()
2806 gint sample_threshold = 0; in gimp_context_get_sample_threshold_int() local
2813 sample_threshold = return_vals[1].data.d_int32; in gimp_context_get_sample_threshold_int()
2817 return sample_threshold; in gimp_context_get_sample_threshold_int()
2834 gimp_context_set_sample_threshold_int (gint sample_threshold) in gimp_context_set_sample_threshold_int() argument
2842 GIMP_PDB_INT32, sample_threshold, in gimp_context_set_sample_threshold_int()
/dports/graphics/gimp-app/gimp-2.10.30/app/pdb/
H A Dgimppdbcontext.h48 gdouble sample_threshold; member
H A Dgimppdbcontext.c321 options->sample_threshold = g_value_get_double (value); in gimp_pdb_context_set_property()
389 g_value_set_double (value, options->sample_threshold); in gimp_pdb_context_get_property()
H A Dimage-select-cmds.c79 pdb_context->sample_threshold, in image_select_color_invoker()
129 pdb_context->sample_threshold, in image_select_contiguous_color_invoker()
H A Dcontext-cmds.c2162 gdouble sample_threshold = 0.0; in context_get_sample_threshold_invoker() local
2165 "sample-threshold", &sample_threshold, in context_get_sample_threshold_invoker()
2183 gdouble sample_threshold; in context_set_sample_threshold_invoker() local
2185 sample_threshold = g_value_get_double (gimp_value_array_index (args, 0)); in context_set_sample_threshold_invoker()
2190 "sample-threshold", sample_threshold, in context_set_sample_threshold_invoker()
2207 gint32 sample_threshold = 0; in context_get_sample_threshold_int_invoker() local
2215 sample_threshold = (gint) (threshold * 255.99); in context_get_sample_threshold_int_invoker()
2218 g_value_set_int (gimp_value_array_index (return_vals, 1), sample_threshold); in context_get_sample_threshold_int_invoker()
2232 gint32 sample_threshold; in context_set_sample_threshold_int_invoker() local
2234 sample_threshold = g_value_get_int (gimp_value_array_index (args, 0)); in context_set_sample_threshold_int_invoker()
[all …]
H A Ddrawable-edit-cmds.c171 GIMP_PDB_CONTEXT (context)->sample_threshold, in drawable_edit_bucket_fill_invoker()