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:
Diffstat (limited to 'source/blender/compositor/intern/COM_Debug.h')
-rw-r--r--source/blender/compositor/intern/COM_Debug.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/source/blender/compositor/intern/COM_Debug.h b/source/blender/compositor/intern/COM_Debug.h
index 35e44506ef2..0107d8b396d 100644
--- a/source/blender/compositor/intern/COM_Debug.h
+++ b/source/blender/compositor/intern/COM_Debug.h
@@ -69,10 +69,15 @@ class DebugInfo {
private:
static int m_file_index;
- static NodeNameMap m_node_names; /**< map nodes to usable names for debug output */
- static OpNameMap m_op_names; /**< map operations to usable names for debug output */
- static std::string m_current_node_name; /**< base name for all operations added by a node */
- static std::string m_current_op_name; /**< base name for automatic sub-operations */
- static GroupStateMap m_group_states; /**< for visualizing group states */
+ /** Map nodes to usable names for debug output. */
+ static NodeNameMap m_node_names;
+ /** Map operations to usable names for debug output. */
+ static OpNameMap m_op_names;
+ /** Base name for all operations added by a node. */
+ static std::string m_current_node_name;
+ /** Base name for automatic sub-operations. */
+ static std::string m_current_op_name;
+ /** For visualizing group states. */
+ static GroupStateMap m_group_states;
#endif
};