Blender  V2.59
CMP_node.h
Go to the documentation of this file.
00001 /*
00002  * $Id: CMP_node.h 35014 2011-02-21 06:58:46Z jesterking $
00003  *
00004  * ***** BEGIN GPL LICENSE BLOCK *****
00005  *
00006  * This program is free software(ListBase *lb); 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(ListBase *lb); 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(ListBase *lb); 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(ListBase *lb); 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): Bob Holcomb.
00029  *
00030  * ***** END GPL LICENSE BLOCK *****
00031  */
00032 
00037 #ifndef CMP_NODE_H
00038 #define CMP_NODE_H
00039 
00040 #include "BKE_node.h"
00041 
00042 
00043 /* ****************** types array for all composite nodes ****************** */
00044 
00045 void register_node_type_cmp_rlayers(ListBase *lb);
00046 void register_node_type_cmp_image(ListBase *lb);
00047 void register_node_type_cmp_texture(ListBase *lb);
00048 void register_node_type_cmp_value(ListBase *lb);
00049 void register_node_type_cmp_rgb(ListBase *lb);
00050 void register_node_type_cmp_curve_time(ListBase *lb);
00051 
00052 void register_node_type_cmp_composite(ListBase *lb);
00053 void register_node_type_cmp_viewer(ListBase *lb);
00054 void register_node_type_cmp_splitviewer(ListBase *lb);
00055 void register_node_type_cmp_output_file(ListBase *lb);
00056 void register_node_type_cmp_view_levels(ListBase *lb);
00057 
00058 void register_node_type_cmp_curve_rgb(ListBase *lb);
00059 void register_node_type_cmp_mix_rgb(ListBase *lb);
00060 void register_node_type_cmp_hue_sat(ListBase *lb);
00061 void register_node_type_cmp_brightcontrast(ListBase *lb);
00062 void register_node_type_cmp_gamma(ListBase *lb);
00063 void register_node_type_cmp_invert(ListBase *lb);
00064 void register_node_type_cmp_alphaover(ListBase *lb);
00065 void register_node_type_cmp_zcombine(ListBase *lb);
00066 void register_node_type_cmp_colorbalance(ListBase *lb);
00067 void register_node_type_cmp_huecorrect(ListBase *lb);
00068 
00069 void register_node_type_cmp_normal(ListBase *lb);
00070 void register_node_type_cmp_curve_vec(ListBase *lb);
00071 void register_node_type_cmp_map_value(ListBase *lb);
00072 void register_node_type_cmp_normalize(ListBase *lb);
00073 
00074 void register_node_type_cmp_filter(ListBase *lb);
00075 void register_node_type_cmp_blur(ListBase *lb);
00076 void register_node_type_cmp_dblur(ListBase *lb);
00077 void register_node_type_cmp_bilateralblur(ListBase *lb);
00078 void register_node_type_cmp_vecblur(ListBase *lb);
00079 void register_node_type_cmp_dilateerode(ListBase *lb);
00080 void register_node_type_cmp_defocus(ListBase *lb);
00081 
00082 void register_node_type_cmp_valtorgb(ListBase *lb);
00083 void register_node_type_cmp_rgbtobw(ListBase *lb);      
00084 void register_node_type_cmp_setalpha(ListBase *lb);
00085 void register_node_type_cmp_idmask(ListBase *lb);
00086 void register_node_type_cmp_math(ListBase *lb);
00087 void register_node_type_cmp_seprgba(ListBase *lb);
00088 void register_node_type_cmp_combrgba(ListBase *lb);
00089 void register_node_type_cmp_sephsva(ListBase *lb);
00090 void register_node_type_cmp_combhsva(ListBase *lb);
00091 void register_node_type_cmp_sepyuva(ListBase *lb);
00092 void register_node_type_cmp_combyuva(ListBase *lb);
00093 void register_node_type_cmp_sepycca(ListBase *lb);
00094 void register_node_type_cmp_combycca(ListBase *lb); 
00095 void register_node_type_cmp_premulkey(ListBase *lb);
00096 
00097 void register_node_type_cmp_diff_matte(ListBase *lb);
00098 void register_node_type_cmp_distance_matte(ListBase *lb);
00099 void register_node_type_cmp_chroma_matte(ListBase *lb);
00100 void register_node_type_cmp_color_matte(ListBase *lb);
00101 void register_node_type_cmp_channel_matte(ListBase *lb);
00102 void register_node_type_cmp_color_spill(ListBase *lb);
00103 void register_node_type_cmp_luma_matte(ListBase *lb); 
00104 
00105 void register_node_type_cmp_translate(ListBase *lb);
00106 void register_node_type_cmp_rotate(ListBase *lb);
00107 void register_node_type_cmp_scale(ListBase *lb);
00108 void register_node_type_cmp_flip(ListBase *lb);
00109 void register_node_type_cmp_crop(ListBase *lb);
00110 void register_node_type_cmp_displace(ListBase *lb);
00111 void register_node_type_cmp_mapuv(ListBase *lb);
00112 
00113 void register_node_type_cmp_glare(ListBase *lb);
00114 void register_node_type_cmp_tonemap(ListBase *lb);
00115 void register_node_type_cmp_lensdist(ListBase *lb);
00116 
00117 #endif