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>2020-09-12 09:33:34 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-12 09:33:34 +0300
commit8c1726918374e1d2d2123e17bae8db5aadde3433 (patch)
treebf6890c679d5eec336af5bc2424c8580934c0613 /source/blender/blenkernel/BKE_node.h
parent4c24e8e992c78d812cdfcb90e3aa648714597ae1 (diff)
Cleanup: use C style doxygen comments
Diffstat (limited to 'source/blender/blenkernel/BKE_node.h')
-rw-r--r--source/blender/blenkernel/BKE_node.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/blenkernel/BKE_node.h b/source/blender/blenkernel/BKE_node.h
index 5e8b371e604..3421aa9e900 100644
--- a/source/blender/blenkernel/BKE_node.h
+++ b/source/blender/blenkernel/BKE_node.h
@@ -254,23 +254,23 @@ typedef struct bNodeType {
* \note Used as a fallback when #bNode.label isn't set.
*/
void (*labelfunc)(struct bNodeTree *ntree, struct bNode *node, char *label, int maxlen);
- /// Optional custom resize handle polling.
+ /** Optional custom resize handle polling. */
int (*resize_area_func)(struct bNode *node, int x, int y);
- /// Optional selection area polling.
+ /** Optional selection area polling. */
int (*select_area_func)(struct bNode *node, int x, int y);
- /// Optional tweak area polling (for grabbing).
+ /** Optional tweak area polling (for grabbing). */
int (*tweak_area_func)(struct bNode *node, int x, int y);
- /// Called when the node is updated in the editor.
+ /** Called when the node is updated in the editor. */
void (*updatefunc)(struct bNodeTree *ntree, struct bNode *node);
- /// Check and update if internal ID data has changed.
+ /** Check and update if internal ID data has changed. */
void (*group_update_func)(struct bNodeTree *ntree, struct bNode *node);
- /// Initialize a new node instance of this type after creation.
+ /** Initialize a new node instance of this type after creation. */
void (*initfunc)(struct bNodeTree *ntree, struct bNode *node);
- /// Free the node instance.
+ /** Free the node instance. */
void (*freefunc)(struct bNode *node);
- /// Make a copy of the node instance.
+ /** Make a copy of the node instance. */
void (*copyfunc)(struct bNodeTree *dest_ntree,
struct bNode *dest_node,
const struct bNode *src_node);