Files
test2/source/blender/depsgraph/intern/eval/deg_eval_flush.h
2022-07-19 14:44:07 +02:00

27 lines
528 B
C++

/* 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::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 blender::deg