|
Blender
V2.59
|
00001 /* 00002 * $Id: SHD_node.h 35014 2011-02-21 06:58:46Z jesterking $ 00003 * 00004 * ***** BEGIN GPL LICENSE BLOCK ***** 00005 * 00006 * This program is free software; you can redistribute it and/or 00007 * modify it under the terms of the GNU General Public License 00008 * as published by the Free Software Foundation; either version 2 00009 * of the License, or (at your option) any later version. The Blender 00010 * Foundation also sells licenses for use in proprietary software under 00011 * the Blender License. See http://www.blender.org/BL/ for information 00012 * about this. 00013 * 00014 * This program is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with this program; if not, write to the Free Software Foundation, 00021 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00022 * 00023 * The Original Code is Copyright (C) 2005 Blender Foundation. 00024 * All rights reserved. 00025 * 00026 * The Original Code is: all of this file. 00027 * 00028 * Contributor(s): none yet. 00029 * 00030 * ***** END GPL LICENSE BLOCK ***** 00031 */ 00032 00037 #ifndef SHD_NODE_H 00038 #define SHD_NODE_H 00039 00040 #include "BKE_node.h" 00041 00042 00043 /* the type definitions array */ 00044 /* ****************** types array for all shaders ****************** */ 00045 00046 void register_node_type_sh_output(ListBase *lb); 00047 void register_node_type_sh_material(ListBase *lb); 00048 void register_node_type_sh_camera(ListBase *lb); 00049 void register_node_type_sh_value(ListBase *lb); 00050 void register_node_type_sh_rgb(ListBase *lb); 00051 void register_node_type_sh_mix_rgb(ListBase *lb); 00052 void register_node_type_sh_valtorgb(ListBase *lb); 00053 void register_node_type_sh_rgbtobw(ListBase *lb); 00054 void register_node_type_sh_texture(ListBase *lb); 00055 void register_node_type_sh_normal(ListBase *lb); 00056 void register_node_type_sh_geom(ListBase *lb); 00057 void register_node_type_sh_mapping(ListBase *lb); 00058 void register_node_type_sh_curve_vec(ListBase *lb); 00059 void register_node_type_sh_curve_rgb(ListBase *lb); 00060 void register_node_type_sh_math(ListBase *lb); 00061 void register_node_type_sh_vect_math(ListBase *lb); 00062 void register_node_type_sh_squeeze(ListBase *lb); 00063 void register_node_type_sh_dynamic(ListBase *lb); 00064 void register_node_type_sh_material_ext(ListBase *lb); 00065 void register_node_type_sh_invert(ListBase *lb); 00066 void register_node_type_sh_seprgb(ListBase *lb); 00067 void register_node_type_sh_combrgb(ListBase *lb); 00068 void register_node_type_sh_hue_sat(ListBase *lb); 00069 00070 #endif 00071 00072