Blender V4.3
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
10
11#include "DNA_scene_types.h"
12
13#include "intern/depsgraph.hh"
15
16namespace blender::deg {
17
19{
20 tagged_for_update = true;
21}
22
24{
25 if (!tagged_for_update) {
26 return;
27 }
28 for (Relation *rel : outlinks) {
29 Node *node = rel->to;
31 }
32}
33
34} // namespace blender::deg
virtual void tag_update(Depsgraph *, eUpdateSource)
Definition deg_node.hh:199
Relations outlinks
Definition deg_node.hh:181
void flush_update_tag(Depsgraph *graph)
virtual void tag_update(Depsgraph *graph, eUpdateSource source) override