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:
authorNathan Letwory <nathan@letworyinteractive.com>2009-02-27 03:08:16 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2009-02-27 03:08:16 +0300
commitc9653cc083a85964cd85e47b180d32a0a2e00ef1 (patch)
treeef1b701018e6602a65b07183631b1b9e99056a45 /source/blender/nodes/TEX_node.h
parent4d9252640139401be5a67fc2d267176be95eaca8 (diff)
[18327] Fix crash when activating nodes
- faulty linking and header file lead to crashing whenever nodes were used.
Diffstat (limited to 'source/blender/nodes/TEX_node.h')
-rw-r--r--source/blender/nodes/TEX_node.h64
1 files changed, 32 insertions, 32 deletions
diff --git a/source/blender/nodes/TEX_node.h b/source/blender/nodes/TEX_node.h
index 90e171e9cca..c52fc757507 100644
--- a/source/blender/nodes/TEX_node.h
+++ b/source/blender/nodes/TEX_node.h
@@ -38,40 +38,40 @@
/* ****************** types array for all texture nodes ****************** */
-bNodeType tex_node_math;
-bNodeType tex_node_mix_rgb;
-bNodeType tex_node_valtorgb;
-bNodeType tex_node_valtonor;
-bNodeType tex_node_rgbtobw;
-bNodeType tex_node_output;
-bNodeType tex_node_viewer;
-bNodeType tex_node_checker;
-bNodeType tex_node_texture;
-bNodeType tex_node_bricks;
-bNodeType tex_node_image;
-bNodeType tex_node_curve_rgb;
-bNodeType tex_node_curve_time;
-bNodeType tex_node_invert;
-bNodeType tex_node_hue_sat;
-bNodeType tex_node_coord;
-bNodeType tex_node_distance;
+extern bNodeType tex_node_math;
+extern bNodeType tex_node_mix_rgb;
+extern bNodeType tex_node_valtorgb;
+extern bNodeType tex_node_valtonor;
+extern bNodeType tex_node_rgbtobw;
+extern bNodeType tex_node_output;
+extern bNodeType tex_node_viewer;
+extern bNodeType tex_node_checker;
+extern bNodeType tex_node_texture;
+extern bNodeType tex_node_bricks;
+extern bNodeType tex_node_image;
+extern bNodeType tex_node_curve_rgb;
+extern bNodeType tex_node_curve_time;
+extern bNodeType tex_node_invert;
+extern bNodeType tex_node_hue_sat;
+extern bNodeType tex_node_coord;
+extern bNodeType tex_node_distance;
-bNodeType tex_node_rotate;
-bNodeType tex_node_translate;
-bNodeType tex_node_scale;
+extern bNodeType tex_node_rotate;
+extern bNodeType tex_node_translate;
+extern bNodeType tex_node_scale;
-bNodeType tex_node_compose;
-bNodeType tex_node_decompose;
+extern bNodeType tex_node_compose;
+extern bNodeType tex_node_decompose;
-bNodeType tex_node_proc_voronoi;
-bNodeType tex_node_proc_blend;
-bNodeType tex_node_proc_magic;
-bNodeType tex_node_proc_marble;
-bNodeType tex_node_proc_clouds;
-bNodeType tex_node_proc_wood;
-bNodeType tex_node_proc_musgrave;
-bNodeType tex_node_proc_noise;
-bNodeType tex_node_proc_stucci;
-bNodeType tex_node_proc_distnoise;
+extern bNodeType tex_node_proc_voronoi;
+extern bNodeType tex_node_proc_blend;
+extern bNodeType tex_node_proc_magic;
+extern bNodeType tex_node_proc_marble;
+extern bNodeType tex_node_proc_clouds;
+extern bNodeType tex_node_proc_wood;
+extern bNodeType tex_node_proc_musgrave;
+extern bNodeType tex_node_proc_noise;
+extern bNodeType tex_node_proc_stucci;
+extern bNodeType tex_node_proc_distnoise;
#endif