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:
authorTon Roosendaal <ton@blender.org>2007-03-26 19:07:38 +0400
committerTon Roosendaal <ton@blender.org>2007-03-26 19:07:38 +0400
commit5c760e481114da07ef2ee364bc305bb7716abe8c (patch)
tree623d328cfd9383efb051d197e6264af185cf1e37 /source/blender/nodes/intern/CMP_nodes/CMP_mixrgb.c
parentd1315a342d7db1653a7fc3cecb646ab785e08f6e (diff)
Changed node type definitions to use a dynamic list.
This will allow python or plugin defined nodes to work as well. (And fixes compile issues with MSVC in yesterdays commit for nodes) Code provided by Nathan L. Fixes in his code: - free_nodesystem() was called too late (after guarded alloc was closed) - free_nodesystem() was freeing nodes that were not malloced even - free_nodesystem was using free, not freeN :) - the typedefs needed to be malloced yes, to allow duplicate nodes like group but also for dynamic nodes.
Diffstat (limited to 'source/blender/nodes/intern/CMP_nodes/CMP_mixrgb.c')
-rw-r--r--source/blender/nodes/intern/CMP_nodes/CMP_mixrgb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_mixrgb.c b/source/blender/nodes/intern/CMP_nodes/CMP_mixrgb.c
index 662b8390e18..6a0cd63d1f1 100644
--- a/source/blender/nodes/intern/CMP_nodes/CMP_mixrgb.c
+++ b/source/blender/nodes/intern/CMP_nodes/CMP_mixrgb.c
@@ -78,6 +78,7 @@ static void node_composit_exec_mix_rgb(void *data, bNode *node, bNodeStack **in,
/* custom1 = mix type */
bNodeType cmp_node_mix_rgb= {
+ /* *next,*prev */ NULL, NULL,
/* type code */ CMP_NODE_MIX_RGB,
/* name */ "Mix",
/* width+range */ 80, 60, 120,