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-12-04 14:34:25 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-12-04 16:17:17 +0300
commit6b72d87def006c40b168bb702ab48e9d676af50b (patch)
tree61dbff98c48e18067c2b30456884e92c1bb4483d /source/blender/depsgraph/DEG_depsgraph.h
parent0868a2b6109f974edcc11a35c9f1bbd0388a8864 (diff)
Depsgraph: Remove unused property based update tags
Those are unused, and not clear whether we will ever support this. Seems to be better having more like "component" tags, would be less magic involved to guess what exactly is to be tagged.
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h
index 9349b189e7b..0837f147275 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -111,8 +111,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. */
void DEG_id_tag_update(struct ID *id, short flag);