Commit: 5eddc183b06edfe3062eccf8f538edad81a6fe51
Author: Sergey Sharybin
Date:   Tue Jul 18 12:32:32 2017 +0200
Branches: blender2.8
https://developer.blender.org/rB5eddc183b06edfe3062eccf8f538edad81a6fe51

Depsgraph: Cleanup, remove unused untested functions

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

M       source/blender/depsgraph/DEG_depsgraph.h
M       source/blender/depsgraph/intern/depsgraph_tag.cc

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

diff --git a/source/blender/depsgraph/DEG_depsgraph.h 
b/source/blender/depsgraph/DEG_depsgraph.h
index 9347a29b14a..2e7e1cd6ff5 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -140,8 +140,6 @@ void DEG_on_visible_update(struct Main *bmain, const bool 
do_time);
 void DEG_graph_id_tag_update(struct Main *bmain,
                              Depsgraph *graph,
                              struct ID *id);
-void DEG_graph_data_tag_update(Depsgraph *graph, const struct PointerRNA *ptr);
-void DEG_graph_property_tag_update(Depsgraph *graph, const struct PointerRNA 
*ptr, const struct PropertyRNA *prop);
 
 /* Tag given ID for an update in all the dependency graphs. */
 enum {
diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc 
b/source/blender/depsgraph/intern/depsgraph_tag.cc
index bfa6f08b286..c293e0a708f 100644
--- a/source/blender/depsgraph/intern/depsgraph_tag.cc
+++ b/source/blender/depsgraph/intern/depsgraph_tag.cc
@@ -147,36 +147,6 @@ void DEG_graph_id_tag_update(Main *bmain, Depsgraph 
*graph, ID *id)
        }
 }
 
-/* Tag nodes related to a specific piece of data */
-void DEG_graph_data_tag_update(Depsgraph *graph, const PointerRNA *ptr)
-{
-       DEG::Depsgraph *deg_graph = reinterpret_cast<DEG::Depsgraph *>(graph);
-       DEG::DepsNode *node = deg_graph->find_node_from_pointer(ptr, NULL);
-       if (node != NULL) {
-               node->tag_update(deg_graph);
-       }
-       else {
-               printf("Missing node in %s\n", __func__);
-               BLI_assert(!"Shouldn't happens since it'll miss crucial 
update.");
-       }
-}
-
-/* Tag nodes related to a specific property. */
-void DEG_graph_property_tag_update(Depsgraph *graph,
-                                   const PointerRNA *ptr,
-                                   const PropertyRNA *prop)
-{
-       DEG::Depsgraph *deg_graph = reinterpret_cast<DEG::Depsgraph *>(graph);
-       DEG::DepsNode *node = deg_graph->find_node_from_pointer(ptr, prop);
-       if (node != NULL) {
-               node->tag_update(deg_graph);
-       }
-       else {
-               printf("Missing node in %s\n", __func__);
-               BLI_assert(!"Shouldn't happens since it'll miss crucial 
update.");
-       }
-}
-
 /* Tag given ID for an update in all the dependency graphs. */
 void DEG_id_tag_update(ID *id, int flag)
 {

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to