@@ -261,19 +261,19 @@ impl Param {
261261 BindingValues :: ScreenTintR ( ref matrix) => {
262262 let ( out_top, out_bottom) = ranges_out ( matrix, x_mindex, x_maxdex, y_mindex, y_maxdex) ;
263263
264- comps. get_mut :: < Drawable > ( binding. node ) . unwrap ( ) . blending . screen_tint . x * =
264+ comps. get_mut :: < Drawable > ( binding. node ) . unwrap ( ) . blending . screen_tint . x + =
265265 bi_interpolate_f32 ( val_normed, range_in, out_top, out_bottom, binding. interpolate_mode ) ;
266266 }
267267 BindingValues :: ScreenTintG ( ref matrix) => {
268268 let ( out_top, out_bottom) = ranges_out ( matrix, x_mindex, x_maxdex, y_mindex, y_maxdex) ;
269269
270- comps. get_mut :: < Drawable > ( binding. node ) . unwrap ( ) . blending . screen_tint . y * =
270+ comps. get_mut :: < Drawable > ( binding. node ) . unwrap ( ) . blending . screen_tint . y + =
271271 bi_interpolate_f32 ( val_normed, range_in, out_top, out_bottom, binding. interpolate_mode ) ;
272272 }
273273 BindingValues :: ScreenTintB ( ref matrix) => {
274274 let ( out_top, out_bottom) = ranges_out ( matrix, x_mindex, x_maxdex, y_mindex, y_maxdex) ;
275275
276- comps. get_mut :: < Drawable > ( binding. node ) . unwrap ( ) . blending . screen_tint . z * =
276+ comps. get_mut :: < Drawable > ( binding. node ) . unwrap ( ) . blending . screen_tint . z + =
277277 bi_interpolate_f32 ( val_normed, range_in, out_top, out_bottom, binding. interpolate_mode ) ;
278278 }
279279 BindingValues :: Opacity ( ref matrix) => {
0 commit comments