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:
authorCampbell Barton <ideasman42@gmail.com>2012-08-20 02:19:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-20 02:19:19 +0400
commit455c37c16b40746d796598a9d63c19491b7a2698 (patch)
tree0f134ebd958032c0a17d042ed3ad90208349003f /source/blender/nodes/composite/nodes/node_composite_mapUV.c
parent257c6de9ace4c66d6054d10712204b62aa8ace2f (diff)
option to build without the legacy compositor
Diffstat (limited to 'source/blender/nodes/composite/nodes/node_composite_mapUV.c')
-rw-r--r--source/blender/nodes/composite/nodes/node_composite_mapUV.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/composite/nodes/node_composite_mapUV.c b/source/blender/nodes/composite/nodes/node_composite_mapUV.c
index a41d010ee95..46c8c109bb7 100644
--- a/source/blender/nodes/composite/nodes/node_composite_mapUV.c
+++ b/source/blender/nodes/composite/nodes/node_composite_mapUV.c
@@ -169,7 +169,9 @@ void register_node_type_cmp_mapuv(bNodeTreeType *ttype)
node_type_base(ttype, &ntype, CMP_NODE_MAP_UV, "Map UV", NODE_CLASS_DISTORT, NODE_OPTIONS);
node_type_socket_templates(&ntype, cmp_node_mapuv_in, cmp_node_mapuv_out);
node_type_size(&ntype, 140, 100, 320);
+#ifdef WITH_COMPOSITOR_LEGACY
node_type_exec(&ntype, node_composit_exec_mapuv);
+#endif
nodeRegisterType(ttype, &ntype);
}