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:
authorCampbell Barton <ideasman42@gmail.com>2018-09-05 07:56:29 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-09-05 07:56:29 +0300
commit44d4a61ed03ac6fc51485ea5621f45098817bcee (patch)
tree030d868d29fc85e3dc0e3040bb831f8239cbf0ea /source/blender/compositor/intern/COM_Converter.h
parent1be265afc00057651ee03ccd5137d4a350641787 (diff)
Cleanup: replace doxy @ with backslash
The rest of Blender uses backslashes.
Diffstat (limited to 'source/blender/compositor/intern/COM_Converter.h')
-rw-r--r--source/blender/compositor/intern/COM_Converter.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/source/blender/compositor/intern/COM_Converter.h b/source/blender/compositor/intern/COM_Converter.h
index d0b888e24a0..05d23eb3e7e 100644
--- a/source/blender/compositor/intern/COM_Converter.h
+++ b/source/blender/compositor/intern/COM_Converter.h
@@ -36,48 +36,48 @@ class NodeOperationOutput;
class NodeOperationBuilder;
/**
- * @brief Conversion methods for the compositor
+ * \brief Conversion methods for the compositor
*/
class Converter {
public:
/**
- * @brief Convert/wraps a bNode in its Node instance.
+ * \brief Convert/wraps a bNode in its Node instance.
*
* For all nodetypes a wrapper class is created.
*
- * @note When adding a new node to blender, this method needs to be changed to return the correct Node instance.
+ * \note When adding a new node to blender, this method needs to be changed to return the correct Node instance.
*
- * @see Node
+ * \see Node
*/
static Node *convert(bNode *b_node);
/**
- * @brief True if the node is considered 'fast'.
+ * \brief True if the node is considered 'fast'.
*
* Slow nodes will be skipped if fast execution is required.
*/
static bool is_fast_node(bNode *b_node);
/**
- * @brief This method will add a datetype conversion rule when the to-socket does not support the from-socket actual data type.
+ * \brief This method will add a datetype conversion rule when the to-socket does not support the from-socket actual data type.
*
- * @note this method is called when conversion is needed.
+ * \note this method is called when conversion is needed.
*
- * @param link the NodeLink what needs conversion
- * @param system the ExecutionSystem to add the conversion to.
- * @see NodeLink - a link between two sockets
+ * \param link the NodeLink what needs conversion
+ * \param system the ExecutionSystem to add the conversion to.
+ * \see NodeLink - a link between two sockets
*/
static NodeOperation *convertDataType(NodeOperationOutput *from, NodeOperationInput *to);
/**
- * @brief This method will add a resolution rule based on the settings of the NodeInput.
+ * \brief This method will add a resolution rule based on the settings of the NodeInput.
*
- * @note Conversion logic is implemented in this method
- * @see InputSocketResizeMode for the possible conversions.
+ * \note Conversion logic is implemented in this method
+ * \see InputSocketResizeMode for the possible conversions.
*
- * @param link the NodeLink what needs conversion
- * @param system the ExecutionSystem to add the conversion to.
- * @see NodeLink - a link between two sockets
+ * \param link the NodeLink what needs conversion
+ * \param system the ExecutionSystem to add the conversion to.
+ * \see NodeLink - a link between two sockets
*/
static void convertResolution(NodeOperationBuilder &builder, NodeOperationOutput *fromSocket, NodeOperationInput *toSocket);