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_hueSatVal.c
parent257c6de9ace4c66d6054d10712204b62aa8ace2f (diff)
option to build without the legacy compositor
Diffstat (limited to 'source/blender/nodes/composite/nodes/node_composite_hueSatVal.c')
-rw-r--r--source/blender/nodes/composite/nodes/node_composite_hueSatVal.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/nodes/composite/nodes/node_composite_hueSatVal.c b/source/blender/nodes/composite/nodes/node_composite_hueSatVal.c
index 32bfc048cc7..91614340c75 100644
--- a/source/blender/nodes/composite/nodes/node_composite_hueSatVal.c
+++ b/source/blender/nodes/composite/nodes/node_composite_hueSatVal.c
@@ -111,7 +111,9 @@ void register_node_type_cmp_hue_sat(bNodeTreeType *ttype)
node_type_size(&ntype, 150, 80, 250);
node_type_init(&ntype, node_composit_init_hue_sat);
node_type_storage(&ntype, "NodeHueSat", node_free_standard_storage, node_copy_standard_storage);
+#ifdef WITH_COMPOSITOR_LEGACY
node_type_exec(&ntype, node_composit_exec_hue_sat);
+#endif
nodeRegisterType(ttype, &ntype);
}