Blender V5.0
deg_node_time.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2013 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
10
11#include "intern/depsgraph.hh"
13
14namespace blender::deg {
15
17{
18 tagged_for_update = true;
19}
20
22{
23 if (!tagged_for_update) {
24 return;
25 }
26 for (Relation *rel : outlinks) {
27 Node *node = rel->to;
29 }
30}
31
32} // namespace blender::deg
virtual void tag_update(Depsgraph *, eUpdateSource)
Definition deg_node.hh:201
Relations outlinks
Definition deg_node.hh:183
void flush_update_tag(Depsgraph *graph)
void tag_update(Depsgraph *graph, eUpdateSource source) override