23 lines
430 B
C++
23 lines
430 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2019 Blender Foundation. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup depsgraph
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "intern/depsgraph_type.h"
|
|
|
|
struct Main;
|
|
|
|
namespace blender::deg {
|
|
|
|
struct Depsgraph;
|
|
|
|
void register_graph(Depsgraph *depsgraph);
|
|
void unregister_graph(Depsgraph *depsgraph);
|
|
Span<Depsgraph *> get_all_registered_graphs(Main *bmain);
|
|
|
|
} // namespace blender::deg
|