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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2020-06-29 16:19:56 +0300
committerJacques Lucke <jacques@blender.org>2020-06-29 16:21:30 +0300
commitcb5bfb32ba01705cf88e2c21eb61f7b9b24688da (patch)
treedf4e98581ab00576a8625d5dc3f534bd964b21da /source/blender/depsgraph/intern/depsgraph_registry.h
parent81fb08ad57d6a71f40fa412ba14961a89cca0278 (diff)
Depsgraph: introduce blender::deg namespace
Reviewers: sergey Differential Revision: https://developer.blender.org/D8150
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph_registry.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph_registry.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph_registry.h b/source/blender/depsgraph/intern/depsgraph_registry.h
index 967791d2fbf..dc29f9d8edf 100644
--- a/source/blender/depsgraph/intern/depsgraph_registry.h
+++ b/source/blender/depsgraph/intern/depsgraph_registry.h
@@ -27,7 +27,8 @@
struct Main;
-namespace DEG {
+namespace blender {
+namespace deg {
struct Depsgraph;
@@ -35,4 +36,5 @@ void register_graph(Depsgraph *depsgraph);
void unregister_graph(Depsgraph *depsgraph);
Span<Depsgraph *> get_all_registered_graphs(Main *bmain);
-} // namespace DEG
+} // namespace deg
+} // namespace blender