~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/nodes/composite/nodes/node_composite_normalize.c

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
        {   -1, 0, ""   }
44
44
};
45
45
 
46
 
void register_node_type_cmp_normalize(bNodeTreeType *ttype)
 
46
void register_node_type_cmp_normalize(void)
47
47
{
48
48
        static bNodeType ntype;
49
49
        
50
 
        node_type_base(ttype, &ntype, CMP_NODE_NORMALIZE, "Normalize", NODE_CLASS_OP_VECTOR, NODE_OPTIONS);
 
50
        cmp_node_type_base(&ntype, CMP_NODE_NORMALIZE, "Normalize", NODE_CLASS_OP_VECTOR, 0);
51
51
        node_type_socket_templates(&ntype, cmp_node_normalize_in, cmp_node_normalize_out);
52
 
        node_type_size(&ntype, 100, 60, 150);
53
52
        
54
 
        nodeRegisterType(ttype, &ntype);
 
53
        nodeRegisterType(&ntype);
55
54
}