From fb0f61c0b09aedaf536369becdc9e9e77609275f Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Wed, 4 Apr 2007 13:58:12 +0000 Subject: === Node editor === * refactor copying and freeing of node->storage by handlerizing them. - freestoragefunc - copystoragefunc - node_util.c/h have generic handlers for these. --- source/blender/nodes/intern/CMP_nodes/CMP_texture.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source/blender/nodes/intern/CMP_nodes/CMP_texture.c') diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_texture.c b/source/blender/nodes/intern/CMP_nodes/CMP_texture.c index eec7ea379fa..9bf9777ebe0 100644 --- a/source/blender/nodes/intern/CMP_nodes/CMP_texture.c +++ b/source/blender/nodes/intern/CMP_nodes/CMP_texture.c @@ -127,8 +127,11 @@ bNodeType cmp_node_texture= { /* output sock */ cmp_node_texture_out, /* storage */ "", /* execfunc */ node_composit_exec_texture, - /* butfunc */ NULL, - /* initfunc */ NULL + /* butfunc */ NULL, + /* initfunc */ NULL, + /* freestoragefunc */ NULL, + /* copystoragefunc */ NULL, + /* id */ NULL }; -- cgit v1.2.3