Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2017-10-03 09:24:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-10-03 09:24:29 +0300
commit6092ded1279e048709fa0481a5dd314ea9712eea (patch)
tree2a623fc2251aefec43f85a47514bf78a4629b410 /source/blender/editors/sculpt_paint/paint_vertex_color_utils.c
parent9f8bb5813bbbd2fc8a6a174b8ff4d86529bef94a (diff)
Weight Paint: add some color blending modes
While these mostly make sense for color, there is no harm in supporting.
Diffstat (limited to 'source/blender/editors/sculpt_paint/paint_vertex_color_utils.c')
-rw-r--r--source/blender/editors/sculpt_paint/paint_vertex_color_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/sculpt_paint/paint_vertex_color_utils.c b/source/blender/editors/sculpt_paint/paint_vertex_color_utils.c
index a2ba8818c1f..096bebba0e4 100644
--- a/source/blender/editors/sculpt_paint/paint_vertex_color_utils.c
+++ b/source/blender/editors/sculpt_paint/paint_vertex_color_utils.c
@@ -280,7 +280,7 @@ BLI_INLINE uint mcol_darken(uint col1, uint col2, int fac)
BLI_INLINE uint mcol_colordodge(uint col1, uint col2, int fac)
{
uchar *cp1, *cp2, *cp;
- int mfac,temp;
+ int mfac, temp;
uint col = 0;
if (fac == 0) {