~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/makesdna/DNA_node_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: DNA_node_types.h,v 1.26 2007/01/14 15:19:26 blendix Exp $ 
 
2
 * $Id: DNA_node_types.h,v 1.27 2007/03/26 15:07:36 ton Exp $ 
3
3
 *
4
4
 * ***** BEGIN GPL LICENSE BLOCK *****
5
5
 *
34
34
#include "DNA_vec_types.h"
35
35
#include "DNA_listBase.h"
36
36
 
37
 
 
 
37
struct ListBase;
38
38
struct SpaceNode;
39
39
struct bNodeLink;
40
40
struct bNodeType;
162
162
        
163
163
        int type, init;                                 /* set init on fileread */
164
164
        int stacksize;                                  /* amount of elements in stack */
165
 
        int cur_index;                                  /* sockets in groups have unique identifiers, adding new sockets always will increase this counter */
166
 
        struct bNodeType **alltypes;    /* type definitions, set on fileread, no read/write */
 
165
        int cur_index;                                  /* sockets in groups have unique identifiers, adding new sockets always 
 
166
                                                                           will increase this counter */
 
167
        ListBase alltypes;                              /* type definitions */
167
168
        struct bNodeType *owntype;              /* for groups or dynamic trees, no read/write */
168
 
        
 
169
 
169
170
        /* callbacks */
170
171
        void (*timecursor)(int nr);
171
172
        void (*stats_draw)(char *str);