From 249f4423ee1c28e7f8ad6fdfff6c61a1f3e6d53d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 25 Nov 2019 01:14:39 +1100 Subject: Cleanup: doxygen comments Also correct some outdated symbol references, add missing 'name' commands. --- source/blender/compositor/intern/COM_ExecutionGroup.cpp | 6 +++--- source/blender/compositor/intern/COM_NodeGraph.cpp | 2 +- source/blender/compositor/intern/COM_NodeGraph.h | 5 +++-- 3 files changed, 7 insertions(+), 6 deletions(-) (limited to 'source/blender/compositor') diff --git a/source/blender/compositor/intern/COM_ExecutionGroup.cpp b/source/blender/compositor/intern/COM_ExecutionGroup.cpp index 65c7429bb68..deb60836177 100644 --- a/source/blender/compositor/intern/COM_ExecutionGroup.cpp +++ b/source/blender/compositor/intern/COM_ExecutionGroup.cpp @@ -198,13 +198,13 @@ void ExecutionGroup::execute(ExecutionSystem *graph) const bNodeTree *bTree = context.getbNodeTree(); if (this->m_width == 0 || this->m_height == 0) { return; - } /// \note: break out... no pixels to calculate. + } /// \note Break out... no pixels to calculate. if (bTree->test_break && bTree->test_break(bTree->tbh)) { return; - } /// \note: early break out for blur and preview nodes + } /// \note Early break out for blur and preview nodes. if (this->m_numberOfChunks == 0) { return; - } /// \note: early break out + } /// \note Early break out. unsigned int chunkNumber; this->m_executionStartTime = PIL_check_seconds_timer(); diff --git a/source/blender/compositor/intern/COM_NodeGraph.cpp b/source/blender/compositor/intern/COM_NodeGraph.cpp index b4d6cc0ff60..6640f144518 100644 --- a/source/blender/compositor/intern/COM_NodeGraph.cpp +++ b/source/blender/compositor/intern/COM_NodeGraph.cpp @@ -188,7 +188,7 @@ NodeOutput *NodeGraph::find_output(const NodeRange &node_range, bNodeSocket *b_s void NodeGraph::add_bNodeLink(const NodeRange &node_range, bNodeLink *b_nodelink) { - /// \note: ignore invalid links + /// \note Ignore invalid links. if (!(b_nodelink->flag & NODE_LINK_VALID)) { return; } diff --git a/source/blender/compositor/intern/COM_NodeGraph.h b/source/blender/compositor/intern/COM_NodeGraph.h index 087b3dda48d..b005149c839 100644 --- a/source/blender/compositor/intern/COM_NodeGraph.h +++ b/source/blender/compositor/intern/COM_NodeGraph.h @@ -36,8 +36,9 @@ class Node; class NodeInput; class NodeOutput; -/** Internal representation of DNA node data. - * This structure is converted into operations by \a NodeCompiler. +/** + * Internal representation of DNA node data. + * This structure is converted into operations by \a NodeCompiler. */ class NodeGraph { public: -- cgit v1.2.3