From 5d30c23c35aafba3a9bc772b4e66dd70b1ed84de Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 20 May 2015 12:54:45 +1000 Subject: doxygen: corrections/updates Also add depsgraph & physics --- source/blender/depsgraph/DEG_depsgraph.h | 17 +++++++++++------ source/blender/depsgraph/DEG_depsgraph_build.h | 4 ++++ source/blender/depsgraph/DEG_depsgraph_debug.h | 4 ++++ source/blender/depsgraph/DEG_depsgraph_query.h | 6 +++++- source/blender/depsgraph/intern/depsgraph.cc | 6 +++++- source/blender/depsgraph/intern/depsgraph.h | 4 ++++ source/blender/depsgraph/intern/depsgraph_build.cc | 6 +++++- source/blender/depsgraph/intern/depsgraph_build.h | 4 ++++ .../blender/depsgraph/intern/depsgraph_build_nodes.cc | 6 ++++-- .../depsgraph/intern/depsgraph_build_relations.cc | 4 ++++ source/blender/depsgraph/intern/depsgraph_debug.cc | 4 ++++ source/blender/depsgraph/intern/depsgraph_debug.h | 4 ++++ source/blender/depsgraph/intern/depsgraph_eval.cc | 6 +++++- source/blender/depsgraph/intern/depsgraph_intern.h | 4 ++++ source/blender/depsgraph/intern/depsgraph_query.cc | 4 ++++ source/blender/depsgraph/intern/depsgraph_queue.cc | 6 +++++- source/blender/depsgraph/intern/depsgraph_queue.h | 6 +++++- source/blender/depsgraph/intern/depsgraph_tag.cc | 6 +++++- .../blender/depsgraph/intern/depsgraph_type_defines.cc | 6 +++++- source/blender/depsgraph/intern/depsgraph_types.h | 4 ++++ source/blender/depsgraph/intern/depsnode.cc | 4 ++++ source/blender/depsgraph/intern/depsnode.h | 4 ++++ source/blender/depsgraph/intern/depsnode_component.cc | 4 ++++ source/blender/depsgraph/intern/depsnode_component.h | 4 ++++ source/blender/depsgraph/intern/depsnode_opcodes.h | 6 +++++- source/blender/depsgraph/intern/depsnode_operation.cc | 4 ++++ source/blender/depsgraph/intern/depsnode_operation.h | 4 ++++ source/blender/depsgraph/util/depsgraph_util_cycle.cc | 6 ++++++ source/blender/depsgraph/util/depsgraph_util_cycle.h | 6 ++++++ source/blender/depsgraph/util/depsgraph_util_function.h | 6 ++++++ source/blender/depsgraph/util/depsgraph_util_hash.h | 6 ++++++ source/blender/depsgraph/util/depsgraph_util_map.h | 6 ++++++ .../blender/depsgraph/util/depsgraph_util_pchanmap.cc | 4 ++++ source/blender/depsgraph/util/depsgraph_util_pchanmap.h | 4 ++++ source/blender/depsgraph/util/depsgraph_util_set.h | 6 ++++++ .../blender/depsgraph/util/depsgraph_util_transitive.cc | 8 +++++++- .../blender/depsgraph/util/depsgraph_util_transitive.h | 6 ++++++ 37 files changed, 181 insertions(+), 18 deletions(-) (limited to 'source/blender/depsgraph') diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h index 9fc50476e47..b91f99ecd20 100644 --- a/source/blender/depsgraph/DEG_depsgraph.h +++ b/source/blender/depsgraph/DEG_depsgraph.h @@ -22,14 +22,15 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** - * - * Public API for Depsgraph */ -#ifndef __DEG_DEPSGRAPH_H__ -#define __DEG_DEPSGRAPH_H__ - -/* Dependency Graph +/** \file blender/depsgraph/DEG_depsgraph.h + * \ingroup depsgraph + * + * Public API for Depsgraph + * + * Dependency Graph + * ================ * * The dependency graph tracks relations between various pieces of data in * a Blender file, but mainly just those which make up scene data. It is used @@ -39,6 +40,7 @@ * * * Evaluation Engine + * ================= * * The evaluation takes the operation-nodes the Depsgraph has tagged for updating, * and schedules them up for being evaluated/executed such that the all dependency @@ -50,6 +52,9 @@ * - These are used in all depsgraph code and by all callers of Depsgraph API... */ +#ifndef __DEG_DEPSGRAPH_H__ +#define __DEG_DEPSGRAPH_H__ + /* Dependency Graph */ typedef struct Depsgraph Depsgraph; diff --git a/source/blender/depsgraph/DEG_depsgraph_build.h b/source/blender/depsgraph/DEG_depsgraph_build.h index 08b83ac2ea1..f680c47247a 100644 --- a/source/blender/depsgraph/DEG_depsgraph_build.h +++ b/source/blender/depsgraph/DEG_depsgraph_build.h @@ -22,6 +22,10 @@ * Contributor(s): Lukas Toenne * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/DEG_depsgraph_build.h + * \ingroup depsgraph * * Public API for Depsgraph */ diff --git a/source/blender/depsgraph/DEG_depsgraph_debug.h b/source/blender/depsgraph/DEG_depsgraph_debug.h index 60e9a021854..374fad63c34 100644 --- a/source/blender/depsgraph/DEG_depsgraph_debug.h +++ b/source/blender/depsgraph/DEG_depsgraph_debug.h @@ -22,6 +22,10 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/DEG_depsgraph_debug.h + * \ingroup depsgraph * * Public API for Querying and Filtering Depsgraph */ diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h index 000497cfac9..60d673d4c5b 100644 --- a/source/blender/depsgraph/DEG_depsgraph_query.h +++ b/source/blender/depsgraph/DEG_depsgraph_query.h @@ -22,8 +22,12 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/DEG_depsgraph_query.h + * \ingroup depsgraph * - * Public API for Querying and Filtering Depsgraph + * Public API for Querying and Filtering Depsgraph. */ #ifndef __DEG_DEPSGRAPH_QUERY_H__ diff --git a/source/blender/depsgraph/intern/depsgraph.cc b/source/blender/depsgraph/intern/depsgraph.cc index c519f1d498e..e9b2a06cf7b 100644 --- a/source/blender/depsgraph/intern/depsgraph.cc +++ b/source/blender/depsgraph/intern/depsgraph.cc @@ -22,8 +22,12 @@ * Contributor(s): Sergey Sharybin * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph.cc + * \ingroup depsgraph * - * Core routines for how the Depsgraph works + * Core routines for how the Depsgraph works. */ #include diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h index c693f4aa3b0..9533fbd10d5 100644 --- a/source/blender/depsgraph/intern/depsgraph.h +++ b/source/blender/depsgraph/intern/depsgraph.h @@ -22,6 +22,10 @@ * Contributor(s): Sergey Sharybin * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph.h + * \ingroup depsgraph * * Datatypes for internal use in the Depsgraph * diff --git a/source/blender/depsgraph/intern/depsgraph_build.cc b/source/blender/depsgraph/intern/depsgraph_build.cc index 15b8cc0fb3a..7a2ee2c416a 100644 --- a/source/blender/depsgraph/intern/depsgraph_build.cc +++ b/source/blender/depsgraph/intern/depsgraph_build.cc @@ -22,8 +22,12 @@ * Contributor(s): Based on original depsgraph.c code - Blender Foundation (2005-2013) * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_build.cc + * \ingroup depsgraph * - * Methods for constructing depsgraph + * Methods for constructing depsgraph. */ #include diff --git a/source/blender/depsgraph/intern/depsgraph_build.h b/source/blender/depsgraph/intern/depsgraph_build.h index 84c09b81508..93fa9e4b0d8 100644 --- a/source/blender/depsgraph/intern/depsgraph_build.h +++ b/source/blender/depsgraph/intern/depsgraph_build.h @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsgraph_build.h + * \ingroup depsgraph + */ + #ifndef __DEPSGRAPH_BUILD_H__ #define __DEPSGRAPH_BUILD_H__ diff --git a/source/blender/depsgraph/intern/depsgraph_build_nodes.cc b/source/blender/depsgraph/intern/depsgraph_build_nodes.cc index 02538d92480..c9d2ed35e17 100644 --- a/source/blender/depsgraph/intern/depsgraph_build_nodes.cc +++ b/source/blender/depsgraph/intern/depsgraph_build_nodes.cc @@ -22,11 +22,14 @@ * Contributor(s): Based on original depsgraph.c code - Blender Foundation (2005-2013) * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_build_nodes.cc + * \ingroup depsgraph * * Methods for constructing depsgraph's nodes */ - #include #include #include @@ -525,7 +528,6 @@ void DepsgraphNodeBuilder::build_pose_constraints(Object *ob, bPoseChannel *pcha /** * Build graph nodes for AnimData block - * \param scene_node: Scene that ID-block this lives on belongs to * \param id: ID-Block which hosts the AnimData */ void DepsgraphNodeBuilder::build_animdata(ID *id) diff --git a/source/blender/depsgraph/intern/depsgraph_build_relations.cc b/source/blender/depsgraph/intern/depsgraph_build_relations.cc index b9248318814..fdaee42f316 100644 --- a/source/blender/depsgraph/intern/depsgraph_build_relations.cc +++ b/source/blender/depsgraph/intern/depsgraph_build_relations.cc @@ -22,6 +22,10 @@ * Contributor(s): Based on original depsgraph.c code - Blender Foundation (2005-2013) * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_build_relations.cc + * \ingroup depsgraph * * Methods for constructing depsgraph */ diff --git a/source/blender/depsgraph/intern/depsgraph_debug.cc b/source/blender/depsgraph/intern/depsgraph_debug.cc index 7c044980d7f..59351495df0 100644 --- a/source/blender/depsgraph/intern/depsgraph_debug.cc +++ b/source/blender/depsgraph/intern/depsgraph_debug.cc @@ -22,6 +22,10 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_debug.cc + * \ingroup depsgraph * * Implementation of tools for debugging the depsgraph */ diff --git a/source/blender/depsgraph/intern/depsgraph_debug.h b/source/blender/depsgraph/intern/depsgraph_debug.h index aed36f6add6..64b97855f57 100644 --- a/source/blender/depsgraph/intern/depsgraph_debug.h +++ b/source/blender/depsgraph/intern/depsgraph_debug.h @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsgraph_debug.h + * \ingroup depsgraph + */ + #ifndef __DEPSGRAPH_DEBUG_H__ #define __DEPSGRAPH_DEBUG_H__ diff --git a/source/blender/depsgraph/intern/depsgraph_eval.cc b/source/blender/depsgraph/intern/depsgraph_eval.cc index 11fd02376a3..74fa003821a 100644 --- a/source/blender/depsgraph/intern/depsgraph_eval.cc +++ b/source/blender/depsgraph/intern/depsgraph_eval.cc @@ -22,8 +22,12 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_eval.cc + * \ingroup depsgraph * - * Evaluation engine entrypoints for Depsgraph Engine + * Evaluation engine entrypoints for Depsgraph Engine. */ #include "MEM_guardedalloc.h" diff --git a/source/blender/depsgraph/intern/depsgraph_intern.h b/source/blender/depsgraph/intern/depsgraph_intern.h index 70d452bf221..7fdc2454564 100644 --- a/source/blender/depsgraph/intern/depsgraph_intern.h +++ b/source/blender/depsgraph/intern/depsgraph_intern.h @@ -22,6 +22,10 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_intern.h + * \ingroup depsgraph * * API's for internal use in the Depsgraph * - Also, defines for "Node Type Info" diff --git a/source/blender/depsgraph/intern/depsgraph_query.cc b/source/blender/depsgraph/intern/depsgraph_query.cc index aa6f5ef3ea1..73193747b93 100644 --- a/source/blender/depsgraph/intern/depsgraph_query.cc +++ b/source/blender/depsgraph/intern/depsgraph_query.cc @@ -22,6 +22,10 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_query.cc + * \ingroup depsgraph * * Implementation of Querying and Filtering API's */ diff --git a/source/blender/depsgraph/intern/depsgraph_queue.cc b/source/blender/depsgraph/intern/depsgraph_queue.cc index 45290c50706..da60d73bc46 100644 --- a/source/blender/depsgraph/intern/depsgraph_queue.cc +++ b/source/blender/depsgraph/intern/depsgraph_queue.cc @@ -22,8 +22,12 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_queue.cc + * \ingroup depsgraph * - * Implementation of special queue type for use in Depsgraph traversals + * Implementation of special queue type for use in Depsgraph traversals. */ #include diff --git a/source/blender/depsgraph/intern/depsgraph_queue.h b/source/blender/depsgraph/intern/depsgraph_queue.h index bd294d4655e..b85d46bd173 100644 --- a/source/blender/depsgraph/intern/depsgraph_queue.h +++ b/source/blender/depsgraph/intern/depsgraph_queue.h @@ -22,8 +22,12 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_queue.h + * \ingroup depsgraph * - * Defines for special queue type for use in Depsgraph traversals + * Defines for special queue type for use in Depsgraph traversals. */ #ifndef __DEPSGRAPH_QUEUE_H__ diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc index 8549fce6aed..65109ff94dd 100644 --- a/source/blender/depsgraph/intern/depsgraph_tag.cc +++ b/source/blender/depsgraph/intern/depsgraph_tag.cc @@ -22,8 +22,12 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_tag.cc + * \ingroup depsgraph * - * Core routines for how the Depsgraph works + * Core routines for how the Depsgraph works. */ #include diff --git a/source/blender/depsgraph/intern/depsgraph_type_defines.cc b/source/blender/depsgraph/intern/depsgraph_type_defines.cc index 67c632d4125..5a3048a4aa3 100644 --- a/source/blender/depsgraph/intern/depsgraph_type_defines.cc +++ b/source/blender/depsgraph/intern/depsgraph_type_defines.cc @@ -22,8 +22,12 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_type_defines.cc + * \ingroup depsgraph * - * Defines and code for core node types + * Defines and code for core node types. */ extern "C" { diff --git a/source/blender/depsgraph/intern/depsgraph_types.h b/source/blender/depsgraph/intern/depsgraph_types.h index 713fec8965d..3616fe85496 100644 --- a/source/blender/depsgraph/intern/depsgraph_types.h +++ b/source/blender/depsgraph/intern/depsgraph_types.h @@ -22,6 +22,10 @@ * Contributor(s): None Yet * * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/intern/depsgraph_types.h + * \ingroup depsgraph * * Datatypes for internal use in the Depsgraph * diff --git a/source/blender/depsgraph/intern/depsnode.cc b/source/blender/depsgraph/intern/depsnode.cc index 866e9115648..e108e561f4e 100644 --- a/source/blender/depsgraph/intern/depsnode.cc +++ b/source/blender/depsgraph/intern/depsnode.cc @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsnode.cc + * \ingroup depsgraph + */ + #include #include diff --git a/source/blender/depsgraph/intern/depsnode.h b/source/blender/depsgraph/intern/depsnode.h index 4f3dc3b7303..53826ae8e71 100644 --- a/source/blender/depsgraph/intern/depsnode.h +++ b/source/blender/depsgraph/intern/depsnode.h @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsnode.h + * \ingroup depsgraph + */ + #ifndef __DEPSNODE_H__ #define __DEPSNODE_H__ diff --git a/source/blender/depsgraph/intern/depsnode_component.cc b/source/blender/depsgraph/intern/depsnode_component.cc index 969b0891e15..1d939c6580d 100644 --- a/source/blender/depsgraph/intern/depsnode_component.cc +++ b/source/blender/depsgraph/intern/depsnode_component.cc @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsnode_component.cc + * \ingroup depsgraph + */ + #include #include diff --git a/source/blender/depsgraph/intern/depsnode_component.h b/source/blender/depsgraph/intern/depsnode_component.h index 06a18b60abb..e3550bb2371 100644 --- a/source/blender/depsgraph/intern/depsnode_component.h +++ b/source/blender/depsgraph/intern/depsnode_component.h @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsnode_component.h + * \ingroup depsgraph + */ + #ifndef __DEPSNODE_COMPONENT_H__ #define __DEPSNODE_COMPONENT_H__ diff --git a/source/blender/depsgraph/intern/depsnode_opcodes.h b/source/blender/depsgraph/intern/depsnode_opcodes.h index 48db2b79e66..b81822c0ac5 100644 --- a/source/blender/depsgraph/intern/depsnode_opcodes.h +++ b/source/blender/depsgraph/intern/depsnode_opcodes.h @@ -24,7 +24,11 @@ * ***** END GPL LICENSE BLOCK ***** */ -/* == OpCodes for OperationDepsNodes == +/** \file blender/depsgraph/intern/depsnode_opcodes.h + * \ingroup depsgraph + * + * \par OpCodes for OperationDepsNodes + * * This file defines all the "operation codes" (opcodes) used to identify * common operation node types. The intention of these defines is to have * a fast and reliable way of identifying the relevant nodes within a component diff --git a/source/blender/depsgraph/intern/depsnode_operation.cc b/source/blender/depsgraph/intern/depsnode_operation.cc index de8755f7ae9..6aeb163356b 100644 --- a/source/blender/depsgraph/intern/depsnode_operation.cc +++ b/source/blender/depsgraph/intern/depsnode_operation.cc @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsnode_operation.cc + * \ingroup depsgraph + */ + #include "MEM_guardedalloc.h" extern "C" { diff --git a/source/blender/depsgraph/intern/depsnode_operation.h b/source/blender/depsgraph/intern/depsnode_operation.h index 2b70ff0a8dc..1119e10805d 100644 --- a/source/blender/depsgraph/intern/depsnode_operation.h +++ b/source/blender/depsgraph/intern/depsnode_operation.h @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/intern/depsnode_operation.h + * \ingroup depsgraph + */ + #ifndef __DEPSNODE_OPERATION_H__ #define __DEPSNODE_OPERATION_H__ diff --git a/source/blender/depsgraph/util/depsgraph_util_cycle.cc b/source/blender/depsgraph/util/depsgraph_util_cycle.cc index 5a171d190cd..5eae8c087ad 100644 --- a/source/blender/depsgraph/util/depsgraph_util_cycle.cc +++ b/source/blender/depsgraph/util/depsgraph_util_cycle.cc @@ -19,6 +19,12 @@ * All rights reserved. * * Contributor(s): Sergey Sharybin + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_cycle.cc + * \ingroup depsgraph */ #include diff --git a/source/blender/depsgraph/util/depsgraph_util_cycle.h b/source/blender/depsgraph/util/depsgraph_util_cycle.h index f827d85c16a..fac38b61057 100644 --- a/source/blender/depsgraph/util/depsgraph_util_cycle.h +++ b/source/blender/depsgraph/util/depsgraph_util_cycle.h @@ -19,6 +19,12 @@ * All rights reserved. * * Contributor(s): Sergey Sharybin + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_cycle.h + * \ingroup depsgraph */ #ifndef __DEPSGRAPH_UTIL_CYCLE_H__ diff --git a/source/blender/depsgraph/util/depsgraph_util_function.h b/source/blender/depsgraph/util/depsgraph_util_function.h index 976a9d6cc2b..74bf5de8ab6 100644 --- a/source/blender/depsgraph/util/depsgraph_util_function.h +++ b/source/blender/depsgraph/util/depsgraph_util_function.h @@ -20,6 +20,12 @@ * * Original Author: Lukas Toenne * Contributor(s): + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_function.h + * \ingroup depsgraph */ #ifndef __DEPSGRAPH_UTIL_FUNCTION_H__ diff --git a/source/blender/depsgraph/util/depsgraph_util_hash.h b/source/blender/depsgraph/util/depsgraph_util_hash.h index 0f5a85b3526..bc75627a026 100644 --- a/source/blender/depsgraph/util/depsgraph_util_hash.h +++ b/source/blender/depsgraph/util/depsgraph_util_hash.h @@ -20,6 +20,12 @@ * * Original Author: Brecht van Lommel * Contributor(s): Lukas Toenne + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_hash.h + * \ingroup depsgraph */ #ifndef __DEPSGRAPH_UTIL_HASH_H__ diff --git a/source/blender/depsgraph/util/depsgraph_util_map.h b/source/blender/depsgraph/util/depsgraph_util_map.h index 2951641431b..0eae1d79e34 100644 --- a/source/blender/depsgraph/util/depsgraph_util_map.h +++ b/source/blender/depsgraph/util/depsgraph_util_map.h @@ -20,6 +20,12 @@ * * Original Author: Brecht van Lommel * Contributor(s): Lukas Toenne + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_map.h + * \ingroup depsgraph */ #ifndef __DEPSGRAPH_UTIL_MAP_H__ diff --git a/source/blender/depsgraph/util/depsgraph_util_pchanmap.cc b/source/blender/depsgraph/util/depsgraph_util_pchanmap.cc index 36bd72108ed..80b37ec622d 100644 --- a/source/blender/depsgraph/util/depsgraph_util_pchanmap.cc +++ b/source/blender/depsgraph/util/depsgraph_util_pchanmap.cc @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/util/depsgraph_util_pchanmap.cc + * \ingroup depsgraph + */ + #include "depsgraph_util_pchanmap.h" #include diff --git a/source/blender/depsgraph/util/depsgraph_util_pchanmap.h b/source/blender/depsgraph/util/depsgraph_util_pchanmap.h index 82ec8654bc5..b7f4c495933 100644 --- a/source/blender/depsgraph/util/depsgraph_util_pchanmap.h +++ b/source/blender/depsgraph/util/depsgraph_util_pchanmap.h @@ -24,6 +24,10 @@ * ***** END GPL LICENSE BLOCK ***** */ +/** \file blender/depsgraph/util/depsgraph_util_pchanmap.h + * \ingroup depsgraph + */ + #ifndef __DEPSGRAPH_UTIL_PCHANMAP_H__ #define __DEPSGRAPH_UTIL_PCHANMAP_H__ diff --git a/source/blender/depsgraph/util/depsgraph_util_set.h b/source/blender/depsgraph/util/depsgraph_util_set.h index 09fa5313920..008ec6b74ca 100644 --- a/source/blender/depsgraph/util/depsgraph_util_set.h +++ b/source/blender/depsgraph/util/depsgraph_util_set.h @@ -20,6 +20,12 @@ * * Original Author: Brecht van Lommel * Contributor(s): Lukas Toenne + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_set.h + * \ingroup depsgraph */ #ifndef __DEPSGRAPH_UTIL_SET_H__ diff --git a/source/blender/depsgraph/util/depsgraph_util_transitive.cc b/source/blender/depsgraph/util/depsgraph_util_transitive.cc index 9411d013c44..98192a9540f 100644 --- a/source/blender/depsgraph/util/depsgraph_util_transitive.cc +++ b/source/blender/depsgraph/util/depsgraph_util_transitive.cc @@ -18,8 +18,14 @@ * The Original Code is Copyright (C) 2015 Blender Foundation. * All rights reserved. * - * Contributor(s): Lukas Toenne + * Contributor(s): Lukas Toenne, * Sergey Sharybin, + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_transitive.cc + * \ingroup depsgraph */ extern "C" { diff --git a/source/blender/depsgraph/util/depsgraph_util_transitive.h b/source/blender/depsgraph/util/depsgraph_util_transitive.h index 8995c18eca0..a80a1d783d7 100644 --- a/source/blender/depsgraph/util/depsgraph_util_transitive.h +++ b/source/blender/depsgraph/util/depsgraph_util_transitive.h @@ -20,6 +20,12 @@ * * Contributor(s): Lukas Toenne * Sergey Sharybin, + * + * ***** END GPL LICENSE BLOCK ***** + */ + +/** \file blender/depsgraph/util/depsgraph_util_transitive.h + * \ingroup depsgraph */ #ifndef __DEPSGRAPH_UTIL_TRANSITIVE_H__ -- cgit v1.2.3