Welcome to mirror list, hosted at ThFree Co, Russian Federation.

deg_eval_flush.h « eval « intern « depsgraph « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eb232e76e53838a9804c3c97a16d9f41e267f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2013 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup depsgraph
 *
 * Core routines for how the Depsgraph works.
 */

#pragma once

namespace blender {
namespace deg {

struct Depsgraph;

/**
 * Flush updates from tagged nodes outwards until all affected nodes are tagged.
 */
void deg_graph_flush_updates(struct Depsgraph *graph);

/**
 * Clear tags from all operation nodes.
 */
void deg_graph_clear_tags(struct Depsgraph *graph);

}  // namespace deg
}  // namespace blender