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-04-06 16:37:46 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-04-06 16:37:46 +0300
commita1b8c0bca2a112a451e448accf731c6f6bb30b75 (patch)
tree5cbd44274a93139d835fb07690db1ebc5ed0664f /source/blender/modifiers
parentd8f931c9b7db09f969a0a6379782103071e0e9f5 (diff)
Depsgraph: More type definitions to new depsgraph header
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_array.c2
-rw-r--r--source/blender/modifiers/intern/MOD_curve.c1
-rw-r--r--source/blender/modifiers/intern/MOD_subsurf.c2
3 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_array.c b/source/blender/modifiers/intern/MOD_array.c
index f4c665bf550..61a5a0de119 100644
--- a/source/blender/modifiers/intern/MOD_array.c
+++ b/source/blender/modifiers/intern/MOD_array.c
@@ -54,6 +54,8 @@
#include "MOD_util.h"
+#include "DEG_depsgraph.h"
+
/* Due to cyclic dependencies it's possible that curve used for
* deformation here is not evaluated at the time of evaluating
* this modifier.
diff --git a/source/blender/modifiers/intern/MOD_curve.c b/source/blender/modifiers/intern/MOD_curve.c
index fa4f1ac76fc..e71a1591afe 100644
--- a/source/blender/modifiers/intern/MOD_curve.c
+++ b/source/blender/modifiers/intern/MOD_curve.c
@@ -46,6 +46,7 @@
#include "BKE_library_query.h"
#include "BKE_modifier.h"
+#include "DEG_depsgraph.h"
#include "DEG_depsgraph_build.h"
static void initData(ModifierData *md)
diff --git a/source/blender/modifiers/intern/MOD_subsurf.c b/source/blender/modifiers/intern/MOD_subsurf.c
index af3ffb820c1..6661ef194f4 100644
--- a/source/blender/modifiers/intern/MOD_subsurf.c
+++ b/source/blender/modifiers/intern/MOD_subsurf.c
@@ -50,6 +50,8 @@
#include "BKE_scene.h"
#include "BKE_subsurf.h"
+#include "DEG_depsgraph.h"
+
#include "MOD_modifiertypes.h"
#include "intern/CCGSubSurf.h"