* pointer convention commit: bNode* node -> bNode *node.
This commit is contained in:
@@ -54,7 +54,7 @@ static void free_dynamicdict(PyObject *dict) {
|
||||
}
|
||||
}
|
||||
|
||||
static void node_dynamic_init(bNode* node) {
|
||||
static void node_dynamic_init(bNode *node) {
|
||||
NodeScriptDict *nsd= MEM_callocN(sizeof(NodeScriptDict), "node script dictionary");
|
||||
int type= node->custom2;
|
||||
node->custom2= 0;
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
#include "CMP_util.h"
|
||||
#include "SHD_util.h"
|
||||
|
||||
void node_free_curves(bNode* node)
|
||||
void node_free_curves(bNode *node)
|
||||
{
|
||||
curvemapping_free(node->storage);
|
||||
}
|
||||
@@ -40,7 +40,7 @@ void node_free_standard_storage(bNode *node)
|
||||
MEM_freeN(node->storage);
|
||||
}
|
||||
|
||||
void node_copy_curves(bNode* orig_node, bNode* new_node)
|
||||
void node_copy_curves(bNode *orig_node, bNode *new_node)
|
||||
{
|
||||
new_node->storage= curvemapping_copy(orig_node->storage);
|
||||
}
|
||||
|
||||
@@ -32,10 +32,10 @@
|
||||
|
||||
#include "MEM_guardedalloc.h"
|
||||
|
||||
extern void node_free_curves(struct bNode* node);
|
||||
extern void node_free_curves(struct bNode *node);
|
||||
extern void node_free_standard_storage(struct bNode *node);
|
||||
|
||||
extern void node_copy_curves(struct bNode* orig_node, struct bNode* new_node);
|
||||
extern void node_copy_curves(struct bNode *orig_node, struct bNode *new_node);
|
||||
extern void node_copy_standard_storage(struct bNode *orig_node, struct bNode *new_node);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user