From 0c990fba6e7be853d636bbf53135e6c0c9168eac Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Tue, 10 May 2011 16:30:03 +0000 Subject: Bugfix #27305 RGB color node supports to set alpha too but never put alpha in the output. Report + fix provided by Dani G. Thanks! --- source/blender/nodes/intern/CMP_nodes/CMP_rgb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/nodes/intern/CMP_nodes') diff --git a/source/blender/nodes/intern/CMP_nodes/CMP_rgb.c b/source/blender/nodes/intern/CMP_nodes/CMP_rgb.c index a6ce77b64f0..36b7988c4e0 100644 --- a/source/blender/nodes/intern/CMP_nodes/CMP_rgb.c +++ b/source/blender/nodes/intern/CMP_nodes/CMP_rgb.c @@ -45,7 +45,7 @@ static void node_composit_exec_rgb(void *UNUSED(data), bNode *node, bNodeStack * { bNodeSocket *sock= node->outputs.first; - VECCOPY(out[0]->vec, sock->ns.vec); + QUATCOPY(out[0]->vec, sock->ns.vec); } void register_node_type_cmp_rgb(ListBase *lb) -- cgit v1.2.3