[Bf-blender-cvs] [14889b9] depsgraph_refactor: Code Cleanup: Remove incorrect/old code

Joshua Leung noreply at git.blender.org
Thu Dec 18 05:09:22 CET 2014


Commit: 14889b947e05c5429c8addde9f68d5abdbc17c61
Author: Joshua Leung
Date:   Thu Dec 18 15:21:59 2014 +1300
Branches: depsgraph_refactor
https://developer.blender.org/rB14889b947e05c5429c8addde9f68d5abdbc17c61

Code Cleanup: Remove incorrect/old code

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

M	release/scripts/startup/bl_ui/space_info.py
M	source/blender/depsgraph/intern/depsgraph_debug.cpp
M	source/blender/depsgraph/intern/depsgraph_debug.h

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

diff --git a/release/scripts/startup/bl_ui/space_info.py b/release/scripts/startup/bl_ui/space_info.py
index b67e832..d1c59c9 100644
--- a/release/scripts/startup/bl_ui/space_info.py
+++ b/release/scripts/startup/bl_ui/space_info.py
@@ -53,7 +53,7 @@ class INFO_HT_header(Header):
         row = layout.row(align=True)
         row.label(text="Depsgraph:", icon='RADIO')
         row.operator("depsgraph.rebuild", text="", icon='FILE_REFRESH')
-        row.operator("depsgraph.export_graphviz", text="Export...", icon='SCRIPTWIN').filepath = "graph.dot"
+        row.operator("depsgraph.export_graphviz", text="Export...", icon='EXPORT').filepath = "graph.dot"
 
         layout.separator()
 
diff --git a/source/blender/depsgraph/intern/depsgraph_debug.cpp b/source/blender/depsgraph/intern/depsgraph_debug.cpp
index 153eb8c..8878d74 100644
--- a/source/blender/depsgraph/intern/depsgraph_debug.cpp
+++ b/source/blender/depsgraph/intern/depsgraph_debug.cpp
@@ -23,7 +23,7 @@
  *
  * ***** END GPL LICENSE BLOCK *****
  *
- * Implementation of Querying and Filtering API's
+ * Implementation of tools for debugging the depsgraph
  */
 
 #include <stdlib.h>
diff --git a/source/blender/depsgraph/intern/depsgraph_debug.h b/source/blender/depsgraph/intern/depsgraph_debug.h
index 83a729a..14119ad 100644
--- a/source/blender/depsgraph/intern/depsgraph_debug.h
+++ b/source/blender/depsgraph/intern/depsgraph_debug.h
@@ -22,12 +22,6 @@
  * Contributor(s): None Yet
  *
  * ***** END GPL LICENSE BLOCK *****
- *
- * "Operation Contexts" are used to pass state info (scene, parameter info, cfra)
- * as well as the temporary data structure(s) that operations should perform their
- * operations on. Thus, instead of operations potentially messing up state in places
- * they shouldn't be touching, they are just provided with thread-safe micro-environments
- * in which to work.
  */
 
 #ifndef __DEPSGRAPH_DEBUG_H__




More information about the Bf-blender-cvs mailing list