[Bf-blender-cvs] [d36fb4f08f8] blender2.8: Depsgraph: Remove old depsgraph headers from creator

Sergey Sharybin noreply at git.blender.org
Thu Apr 6 16:50:21 CEST 2017


Commit: d36fb4f08f870c9ee3941cb4a4c88c0729ea7b34
Author: Sergey Sharybin
Date:   Thu Apr 6 15:40:08 2017 +0200
Branches: blender2.8
https://developer.blender.org/rBd36fb4f08f870c9ee3941cb4a4c88c0729ea7b34

Depsgraph: Remove old depsgraph headers from creator

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

M	source/creator/creator.c

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

diff --git a/source/creator/creator.c b/source/creator/creator.c
index a59a45f885c..78bab14cd96 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -56,7 +56,6 @@
 #include "BKE_brush.h"
 #include "BKE_cachefile.h"
 #include "BKE_context.h"
-#include "BKE_depsgraph.h" /* for DAG_init */
 #include "BKE_font.h"
 #include "BKE_global.h"
 #include "BKE_material.h"
@@ -66,6 +65,7 @@
 #include "BKE_image.h"
 #include "BKE_particle.h"
 
+#include "DEG_depsgraph.h"
 
 #include "IMB_imbuf.h"  /* for IMB_init */
 
@@ -361,7 +361,7 @@ int main(
 	BKE_cachefiles_init();
 	BKE_images_init();
 	BKE_modifier_init();
-	DAG_init();
+	DEG_register_node_types();
 
 	BKE_brush_system_init();
 	RE_texture_rng_init();




More information about the Bf-blender-cvs mailing list