[Bf-blender-cvs] [f8827ce4cd2] temp-greasepencil-vfx: Fix typo errors

Antonio Vazquez noreply at git.blender.org
Wed Jun 27 10:09:14 CEST 2018


Commit: f8827ce4cd29d08bd37a0b8201d40d09b0ab243e
Author: Antonio Vazquez
Date:   Wed Jun 27 10:04:19 2018 +0200
Branches: temp-greasepencil-vfx
https://developer.blender.org/rBf8827ce4cd29d08bd37a0b8201d40d09b0ab243e

Fix typo errors

===================================================================

M	source/blender/shader_fx/intern/FX_shader_blur.c
M	source/blender/shader_fx/intern/FX_shader_light.c
M	source/blender/shader_fx/intern/FX_shader_swirl.c

===================================================================

diff --git a/source/blender/shader_fx/intern/FX_shader_blur.c b/source/blender/shader_fx/intern/FX_shader_blur.c
index bde9c4ac7a0..3dcc7ce35b8 100644
--- a/source/blender/shader_fx/intern/FX_shader_blur.c
+++ b/source/blender/shader_fx/intern/FX_shader_blur.c
@@ -24,7 +24,7 @@
  *
  */
 
-/** \file blender/modifiers/intern/FX_shader_blur.c
+/** \file blender/shader_fx/intern/FX_shader_blur.c
  *  \ingroup shader_fx
  */
 
diff --git a/source/blender/shader_fx/intern/FX_shader_light.c b/source/blender/shader_fx/intern/FX_shader_light.c
index 82cc7e64c39..0f415f1de9b 100644
--- a/source/blender/shader_fx/intern/FX_shader_light.c
+++ b/source/blender/shader_fx/intern/FX_shader_light.c
@@ -58,10 +58,10 @@ static void updateDepsgraph(ShaderFxData *md, const ModifierUpdateDepsgraphConte
 {
 	LightShaderFxData *fxd = (LightShaderFxData *)md;
 	if (fxd->object != NULL) {
-		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_GEOMETRY, "Light Modifier");
-		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_TRANSFORM, "Light Modifier");
+		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_GEOMETRY, "Light ShaderFx");
+		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_TRANSFORM, "Light ShaderFx");
 	}
-	DEG_add_object_relation(ctx->node, ctx->object, DEG_OB_COMP_TRANSFORM, "Light Modifier");
+	DEG_add_object_relation(ctx->node, ctx->object, DEG_OB_COMP_TRANSFORM, "Light ShaderFx");
 }
 
 static bool isDisabled(ShaderFxData *fx, int UNUSED(userRenderParams))
diff --git a/source/blender/shader_fx/intern/FX_shader_swirl.c b/source/blender/shader_fx/intern/FX_shader_swirl.c
index 70cbc0b9e18..7546dec4fe0 100644
--- a/source/blender/shader_fx/intern/FX_shader_swirl.c
+++ b/source/blender/shader_fx/intern/FX_shader_swirl.c
@@ -57,10 +57,10 @@ static void updateDepsgraph(ShaderFxData *fx, const ModifierUpdateDepsgraphConte
 {
 	SwirlShaderFxData *fxd = (SwirlShaderFxData *)fx;
 	if (fxd->object != NULL) {
-		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_GEOMETRY, "Swirl Modifier");
-		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_TRANSFORM, "Swirl Modifier");
+		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_GEOMETRY, "Swirl ShaderFx");
+		DEG_add_object_relation(ctx->node, fxd->object, DEG_OB_COMP_TRANSFORM, "Swirl ShaderFx");
 	}
-	DEG_add_object_relation(ctx->node, ctx->object, DEG_OB_COMP_TRANSFORM, "Swirl Modifier");
+	DEG_add_object_relation(ctx->node, ctx->object, DEG_OB_COMP_TRANSFORM, "Swirl ShaderFx");
 }
 
 static bool isDisabled(ShaderFxData *fx, int UNUSED(userRenderParams))



More information about the Bf-blender-cvs mailing list