Fix T50039: texture paint soften strength not working with float images.

This commit is contained in:
Brecht Van Lommel 2017-07-24 15:02:39 +02:00
parent c3c0495b30
commit b379f02f20
Notes: blender-bot 2023-05-03 10:14:48 +02:00
Referenced by issue #50039, Soften Brush on High Color Depth Images
1 changed files with 1 additions and 1 deletions

View File

@ -4295,7 +4295,7 @@ static void do_projectpaint_soften_f(ProjPaintState *ps, ProjPixel *projPixel, f
return;
}
else {
blend_color_interpolate_float(rgba, rgba, projPixel->pixel.f_pt, mask);
blend_color_interpolate_float(rgba, projPixel->pixel.f_pt, rgba, mask);
}
BLI_linklist_prepend_arena(softenPixels, (void *)projPixel, softenArena);