projects
/
blender.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
f1f1dde
)
Bugfix #27305
author
Ton Roosendaal <ton@blender.org>
Tue, 10 May 2011 16:30:03 +0000
(16:30 +0000)
committer
Ton Roosendaal <ton@blender.org>
Tue, 10 May 2011 16:30:03 +0000
(16:30 +0000)
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
patch
|
blob
|
history
diff --git
a/source/blender/nodes/intern/CMP_nodes/CMP_rgb.c
b/source/blender/nodes/intern/CMP_nodes/CMP_rgb.c
index a6ce77b64f080146acb8a4c13ce10f07f33580d8..36b7988c4e0a7c0a9bf91450561011ac658d996a 100644
(file)
--- 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;
{
bNodeSocket *sock= node->outputs.first;
-
VEC
COPY(out[0]->vec, sock->ns.vec);
+
QUAT
COPY(out[0]->vec, sock->ns.vec);
}
void register_node_type_cmp_rgb(ListBase *lb)
}
void register_node_type_cmp_rgb(ListBase *lb)