Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/intern/depsgraph_tag.h
| Show All 35 Lines | |||||
| /* Tag given ID for an update in all registered dependency graphs. */ | /* Tag given ID for an update in all registered dependency graphs. */ | ||||
| void id_tag_update(Main *bmain, ID *id, int flag, eUpdateSource update_source); | void id_tag_update(Main *bmain, ID *id, int flag, eUpdateSource update_source); | ||||
| /* Tag given ID for an update with in a given dependency graph. */ | /* Tag given ID for an update with in a given dependency graph. */ | ||||
| void graph_id_tag_update( | void graph_id_tag_update( | ||||
| Main *bmain, Depsgraph *graph, ID *id, int flag, eUpdateSource update_source); | Main *bmain, Depsgraph *graph, ID *id, int flag, eUpdateSource update_source); | ||||
| /* Tag IDs of the graph for the visibility update tags. | |||||
| * Will do nothing if the graph is not tagged for visibility update. */ | |||||
| void graph_tag_ids_for_visible_update(Depsgraph *graph); | |||||
| } // namespace deg | } // namespace deg | ||||
| } // namespace blender | } // namespace blender | ||||