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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-10-25 13:11:12 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-10-25 13:11:12 +0300
commit0bbf2f9554d267951c18dd2d0eb86ceb308a9c11 (patch)
tree65e61905e643a453678e1c346c5e3299dd83d089 /source/blender/depsgraph/DEG_depsgraph_build.h
parentb4ba1068c1f2cdd5023929d7c5935a607b76bd9f (diff)
Depsgraph: Add missing forward struct declarations
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph_build.h')
-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,