[Bf-blender-cvs] [788b09b14a1] temp-modifier-rm-cddm: FIXUP for ModifierEvalContext introduction

Sybren A. Stüvel noreply at git.blender.org
Tue May 1 14:52:19 CEST 2018


Commit: 788b09b14a1a9e563a1729d9b4026c1fea27983e
Author: Sybren A. Stüvel
Date:   Tue May 1 14:51:39 2018 +0200
Branches: temp-modifier-rm-cddm
https://developer.blender.org/rB788b09b14a1a9e563a1729d9b4026c1fea27983e

FIXUP for ModifierEvalContext introduction

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

M	source/blender/modifiers/intern/MOD_remesh.c

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

diff --git a/source/blender/modifiers/intern/MOD_remesh.c b/source/blender/modifiers/intern/MOD_remesh.c
index 7fb056e56ad..254b82f3968 100644
--- a/source/blender/modifiers/intern/MOD_remesh.c
+++ b/source/blender/modifiers/intern/MOD_remesh.c
@@ -203,10 +203,8 @@ static DerivedMesh *applyModifier(ModifierData *md,
 #else /* !WITH_MOD_REMESH */
 
 static DerivedMesh *applyModifier(ModifierData *UNUSED(md),
-                                  struct Depsgraph *UNUSED(depsgraph),
-                                  Object *UNUSED(ob),
-                                  DerivedMesh *derivedData,
-                                  ModifierApplyFlag UNUSED(flag))
+                                  const ModifierEvalContext *UNUSED(ctx),
+                                  DerivedMesh *derivedData)
 {
 	return derivedData;
 }



More information about the Bf-blender-cvs mailing list