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:
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_build.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph_build.h b/source/blender/depsgraph/DEG_depsgraph_build.h
index b65d921cfd1..c915b7ef076 100644
--- a/source/blender/depsgraph/DEG_depsgraph_build.h
+++ b/source/blender/depsgraph/DEG_depsgraph_build.h
@@ -44,6 +44,8 @@ struct Main;
struct Scene;
struct Group;
struct EffectorWeights;
+struct ModifierData;
+struct Object;
#ifdef __cplusplus
extern "C" {
@@ -162,7 +164,7 @@ typedef bool (*DEG_CollobjFilterFunction)(struct Object *obj, struct ModifierDat
void DEG_add_collision_relations(struct DepsNodeHandle *handle,
struct Scene *scene,
- Object *ob,
+ struct Object *ob,
struct Group *group,
int layer,
unsigned int modifier_type,
@@ -171,7 +173,7 @@ void DEG_add_collision_relations(struct DepsNodeHandle *handle,
const char *name);
void DEG_add_forcefield_relations(struct DepsNodeHandle *handle,
struct Scene *scene,
- Object *ob,
+ struct Object *ob,
struct EffectorWeights *eff,
bool add_absorption,
int skip_forcefield,