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:
authorEitanSomething <eitant13@gmail.com>2019-08-23 14:13:59 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-23 14:14:15 +0300
commit8eb22968724b3ac9f6ccb426b08cb865cbbcef94 (patch)
tree7d74d378aef4bb98fdb651f43c8a3aef072c85c7 /source/blender/blenkernel/intern/seqeffects.c
parent2f8ea1c11e1065984013b02f7dea3051705411ea (diff)
UI: use consistent "Color Burn" name for blend mode
Previously it was named just "Burn" in some places. Differential Revision: https://developer.blender.org/D5186
Diffstat (limited to 'source/blender/blenkernel/intern/seqeffects.c')
-rw-r--r--source/blender/blenkernel/intern/seqeffects.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/seqeffects.c b/source/blender/blenkernel/intern/seqeffects.c
index b151bc7f092..89f3f9ef9fd 100644
--- a/source/blender/blenkernel/intern/seqeffects.c
+++ b/source/blender/blenkernel/intern/seqeffects.c
@@ -1646,7 +1646,7 @@ static void do_blend_effect_float(
case SEQ_TYPE_DARKEN:
apply_blend_function_float(facf0, facf1, x, y, rect1, rect2, out, blend_color_darken_float);
break;
- case SEQ_TYPE_BURN:
+ case SEQ_TYPE_COLOR_BURN:
apply_blend_function_float(facf0, facf1, x, y, rect1, rect2, out, blend_color_burn_float);
break;
case SEQ_TYPE_LINEAR_BURN:
@@ -1734,7 +1734,7 @@ static void do_blend_effect_byte(float facf0,
case SEQ_TYPE_DARKEN:
apply_blend_function_byte(facf0, facf1, x, y, rect1, rect2, out, blend_color_darken_byte);
break;
- case SEQ_TYPE_BURN:
+ case SEQ_TYPE_COLOR_BURN:
apply_blend_function_byte(facf0, facf1, x, y, rect1, rect2, out, blend_color_burn_byte);
break;
case SEQ_TYPE_LINEAR_BURN:
@@ -4130,7 +4130,7 @@ static struct SeqEffectHandle get_sequence_effect_impl(int seq_type)
break;
case SEQ_TYPE_SCREEN:
case SEQ_TYPE_OVERLAY:
- case SEQ_TYPE_BURN:
+ case SEQ_TYPE_COLOR_BURN:
case SEQ_TYPE_LINEAR_BURN:
case SEQ_TYPE_DARKEN:
case SEQ_TYPE_LIGHTEN: