Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenkernel/intern/node_composite.c')
-rw-r--r--source/blender/blenkernel/intern/node_composite.c61
1 files changed, 35 insertions, 26 deletions
diff --git a/source/blender/blenkernel/intern/node_composite.c b/source/blender/blenkernel/intern/node_composite.c
index 7ee3cc20009..301cac90a1d 100644
--- a/source/blender/blenkernel/intern/node_composite.c
+++ b/source/blender/blenkernel/intern/node_composite.c
@@ -3987,7 +3987,7 @@ static bNodeType cmp_node_translate= {
/* type code */ CMP_NODE_TRANSLATE,
/* name */ "Translate",
/* width+range */ 140, 100, 320,
- /* class+opts */ NODE_CLASS_CONVERTOR, NODE_OPTIONS,
+ /* class+opts */ NODE_CLASS_DISTORT, NODE_OPTIONS,
/* input sock */ cmp_node_translate_in,
/* output sock */ cmp_node_translate_out,
/* storage */ "",
@@ -4054,7 +4054,7 @@ static bNodeType cmp_node_flip= {
/* type code */ CMP_NODE_FLIP,
/* name */ "Flip",
/* width+range */ 140, 100, 320,
- /* class+opts */ NODE_CLASS_CONVERTOR, NODE_OPTIONS,
+ /* class+opts */ NODE_CLASS_DISTORT, NODE_OPTIONS,
/* input sock */ cmp_node_flip_in,
/* output sock */ cmp_node_flip_out,
/* storage */ "",
@@ -5099,7 +5099,7 @@ static bNodeType cmp_node_rotate= {
/* type code */ CMP_NODE_ROTATE,
/* name */ "Rotate",
/* width+range */ 140, 100, 320,
- /* class+opts */ NODE_CLASS_CONVERTOR, NODE_OPTIONS,
+ /* class+opts */ NODE_CLASS_DISTORT, NODE_OPTIONS,
/* input sock */ cmp_node_rotate_in,
/* output sock */ cmp_node_rotate_out,
/* storage */ "",
@@ -5183,7 +5183,7 @@ static bNodeType cmp_node_scale= {
/* type code */ CMP_NODE_SCALE,
/* name */ "Scale",
/* width+range */ 140, 100, 320,
- /* class+opts */ NODE_CLASS_CONVERTOR, NODE_OPTIONS,
+ /* class+opts */ NODE_CLASS_DISTORT, NODE_OPTIONS,
/* input sock */ cmp_node_scale_in,
/* output sock */ cmp_node_scale_out,
/* storage */ "",
@@ -5294,7 +5294,7 @@ static bNodeType cmp_node_mapuv= {
/* type code */ CMP_NODE_MAP_UV,
/* name */ "Map UV",
/* width+range */ 140, 100, 320,
- /* class+opts */ NODE_CLASS_CONVERTOR, NODE_OPTIONS,
+ /* class+opts */ NODE_CLASS_DISTORT, NODE_OPTIONS,
/* input sock */ cmp_node_mapuv_in,
/* output sock */ cmp_node_mapuv_out,
/* storage */ "",
@@ -5485,7 +5485,7 @@ static bNodeType cmp_node_displace= {
/* type code */ CMP_NODE_DISPLACE,
/* name */ "Displace",
/* width+range */ 140, 100, 320,
- /* class+opts */ NODE_CLASS_OP_FILTER, NODE_OPTIONS,
+ /* class+opts */ NODE_CLASS_DISTORT, NODE_OPTIONS,
/* input sock */ cmp_node_displace_in,
/* output sock */ cmp_node_displace_out,
/* storage */ "",
@@ -5497,50 +5497,59 @@ static bNodeType cmp_node_displace= {
bNodeType *node_all_composit[]= {
&node_group_typeinfo,
+
+ &cmp_node_rlayers,
+ &cmp_node_image,
+ &cmp_node_texture,
+ &cmp_node_value,
+ &cmp_node_rgb,
+ &cmp_node_time,
+
&cmp_node_composite,
&cmp_node_viewer,
+ &cmp_node_splitviewer,
&cmp_node_output_file,
- &cmp_node_rlayers,
- &cmp_node_image,
+
&cmp_node_curve_rgb,
&cmp_node_mix_rgb,
&cmp_node_hue_sat,
&cmp_node_alphaover,
- &cmp_node_value,
- &cmp_node_rgb,
+ &cmp_node_zcombine,
+
&cmp_node_normal,
&cmp_node_curve_vec,
- &cmp_node_time,
+ &cmp_node_map_value,
+
&cmp_node_filter,
&cmp_node_blur,
&cmp_node_vecblur,
- &cmp_node_map_value,
+ &cmp_node_dilateerode,
+ &cmp_node_defocus,
+
&cmp_node_valtorgb,
- &cmp_node_rgbtobw,
+ &cmp_node_rgbtobw,
+ &cmp_node_setalpha,
+ &cmp_node_idmask,
&cmp_node_seprgba,
- &cmp_node_sephsva,
&cmp_node_combrgba,
- &cmp_node_setalpha,
- &cmp_node_texture,
- &cmp_node_translate,
- &cmp_node_flip,
- &cmp_node_zcombine,
- &cmp_node_dilateerode,
+ &cmp_node_sephsva,
&cmp_node_sepyuva,
&cmp_node_combyuva,
&cmp_node_sepycca,
&cmp_node_combycca,
+
&cmp_node_diff_matte,
- &cmp_node_color_spill,
&cmp_node_chroma,
+ &cmp_node_luma,
+ &cmp_node_color_spill,
+
+ &cmp_node_translate,
&cmp_node_rotate,
&cmp_node_scale,
- &cmp_node_luma,
- &cmp_node_splitviewer,
- &cmp_node_mapuv,
- &cmp_node_idmask,
- &cmp_node_defocus,
+ &cmp_node_flip,
&cmp_node_displace,
+ &cmp_node_mapuv,
+
NULL
};