- Adding execution code for Node trees. Was a bit a puzzle, since I want it to be multithreading by design. This now is solved by defining a stack per tree for all data that's being written into. This stack, which resides now in the NodeTree itself, then can be allocated per thread. - For testing pleasure, I've added a 'mix node' and a 'show node', so you can already see it do something. :) - reshuffled structure, to put things nice together, and have easier node adding. Current state is still WIP though, structure might change. For the record; new file node_shaders.c will contain all shader node definitions, apart from the drawing callbacks. Next: I'm going to check on Andrea's work on icons now, since this is very much needed for true shader/composit work. Now back to release work...
57 lines
1.4 KiB
C++
57 lines
1.4 KiB
C++
/**
|
|
* $Id:
|
|
*
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your opt ion) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* The Original Code is Copyright (C) 2005 Blender Foundation.
|
|
* All rights reserved.
|
|
*
|
|
* The Original Code is: all of this file.
|
|
*
|
|
* Contributor(s): none yet.
|
|
*
|
|
* ***** END GPL BLOCK *****
|
|
*/
|
|
|
|
#ifndef BSE_NODE_H
|
|
#define BSE_NODE_H
|
|
|
|
#define NODE_DY 20
|
|
#define NODE_DYS 10
|
|
#define NODE_SOCK 5
|
|
|
|
struct SpaceNode;
|
|
struct bNode;
|
|
|
|
/* ************* button events *********** */
|
|
|
|
#define B_NODE_EXEC 1
|
|
|
|
|
|
/* ************* API for editnode.c *********** */
|
|
|
|
void node_deselectall(struct SpaceNode *snode, int swap);
|
|
void node_transform_ext(int mode, int unused);
|
|
|
|
/* ************* Shader nodes ***************** */
|
|
|
|
void node_shader_set_drawfunc(struct bNode *node);
|
|
|
|
|
|
#endif
|
|
|