Blender V4.3
deg_builder_transitive.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2015 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11namespace blender::deg {
12
13struct Depsgraph;
14
15/* Performs a transitive reduction to remove redundant relations. */
16void deg_graph_transitive_reduction(Depsgraph *graph);
17
18} // namespace blender::deg
void deg_graph_transitive_reduction(Depsgraph *graph)