[Bf-blender-cvs] [97156bbce56] temp-derived-node-tree-refactor: rename files

Jacques Lucke noreply at git.blender.org
Thu Mar 4 18:07:03 CET 2021


Commit: 97156bbce568945395eb6bb4633614e13b17f25a
Author: Jacques Lucke
Date:   Thu Mar 4 18:03:11 2021 +0100
Branches: temp-derived-node-tree-refactor
https://developer.blender.org/rB97156bbce568945395eb6bb4633614e13b17f25a

rename files

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

M	source/blender/modifiers/intern/MOD_nodes.cc
M	source/blender/nodes/CMakeLists.txt
R100	source/blender/nodes/NOD_XXX_node_tree.hh	source/blender/nodes/NOD_derived_node_tree.hh
M	source/blender/nodes/NOD_geometry_exec.hh
M	source/blender/nodes/NOD_node_tree_multi_function.hh
R099	source/blender/nodes/intern/xxx_node_tree.cc	source/blender/nodes/intern/derived_node_tree.cc

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

diff --git a/source/blender/modifiers/intern/MOD_nodes.cc b/source/blender/modifiers/intern/MOD_nodes.cc
index 5dc6f0cd187..8ce458df7ff 100644
--- a/source/blender/modifiers/intern/MOD_nodes.cc
+++ b/source/blender/modifiers/intern/MOD_nodes.cc
@@ -71,7 +71,7 @@
 #include "MOD_nodes.h"
 #include "MOD_ui_common.h"
 
-#include "NOD_XXX_node_tree.hh"
+#include "NOD_derived_node_tree.hh"
 #include "NOD_geometry.h"
 #include "NOD_geometry_exec.hh"
 #include "NOD_node_tree_multi_function.hh"
diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt
index 0d018a00551..ab737cac715 100644
--- a/source/blender/nodes/CMakeLists.txt
+++ b/source/blender/nodes/CMakeLists.txt
@@ -306,7 +306,7 @@ set(SRC
   intern/node_tree_ref.cc
   intern/node_util.c
   intern/type_callbacks.cc
-  intern/xxx_node_tree.cc
+  intern/derived_node_tree.cc
 
   composite/node_composite_util.h
   function/node_function_util.hh
@@ -328,7 +328,7 @@ set(SRC
   NOD_static_types.h
   NOD_texture.h
   NOD_type_callbacks.hh
-  NOD_XXX_node_tree.hh
+  NOD_derived_node_tree.hh
   intern/node_common.h
   intern/node_exec.h
   intern/node_util.h
diff --git a/source/blender/nodes/NOD_XXX_node_tree.hh b/source/blender/nodes/NOD_derived_node_tree.hh
similarity index 100%
rename from source/blender/nodes/NOD_XXX_node_tree.hh
rename to source/blender/nodes/NOD_derived_node_tree.hh
diff --git a/source/blender/nodes/NOD_geometry_exec.hh b/source/blender/nodes/NOD_geometry_exec.hh
index 5567622d07d..1772f92c4b6 100644
--- a/source/blender/nodes/NOD_geometry_exec.hh
+++ b/source/blender/nodes/NOD_geometry_exec.hh
@@ -26,7 +26,7 @@
 
 #include "DNA_node_types.h"
 
-#include "NOD_XXX_node_tree.hh"
+#include "NOD_derived_node_tree.hh"
 
 struct Depsgraph;
 struct ModifierData;
diff --git a/source/blender/nodes/NOD_node_tree_multi_function.hh b/source/blender/nodes/NOD_node_tree_multi_function.hh
index bb28422250d..4f7732c11d3 100644
--- a/source/blender/nodes/NOD_node_tree_multi_function.hh
+++ b/source/blender/nodes/NOD_node_tree_multi_function.hh
@@ -25,7 +25,7 @@
 #include "FN_multi_function_builder.hh"
 #include "FN_multi_function_network.hh"
 
-#include "NOD_XXX_node_tree.hh"
+#include "NOD_derived_node_tree.hh"
 #include "NOD_type_callbacks.hh"
 
 #include "BLI_multi_value_map.hh"
diff --git a/source/blender/nodes/intern/xxx_node_tree.cc b/source/blender/nodes/intern/derived_node_tree.cc
similarity index 99%
rename from source/blender/nodes/intern/xxx_node_tree.cc
rename to source/blender/nodes/intern/derived_node_tree.cc
index cc6940fcb6e..9d989edcd48 100644
--- a/source/blender/nodes/intern/xxx_node_tree.cc
+++ b/source/blender/nodes/intern/derived_node_tree.cc
@@ -14,7 +14,7 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
-#include "NOD_XXX_node_tree.hh"
+#include "NOD_derived_node_tree.hh"
 
 namespace blender::nodes {



More information about the Bf-blender-cvs mailing list