![]() |
Blender V2.61 - r43446
|
#include "node_composite_util.h"Go to the source code of this file.
Functions | |
| static void | node_composit_exec_seprgba (void *UNUSED(data), bNode *UNUSED(node), bNodeStack **in, bNodeStack **out) |
| void | register_node_type_cmp_seprgba (bNodeTreeType *ttype) |
| static void | do_combrgba (bNode *UNUSED(node), float *out, float *in1, float *in2, float *in3, float *in4) |
| static void | node_composit_exec_combrgba (void *UNUSED(data), bNode *node, bNodeStack **in, bNodeStack **out) |
| void | register_node_type_cmp_combrgba (bNodeTreeType *ttype) |
Variables | |
| static bNodeSocketTemplate | cmp_node_seprgba_in [] |
| static bNodeSocketTemplate | cmp_node_seprgba_out [] |
| static bNodeSocketTemplate | cmp_node_combrgba_in [] |
| static bNodeSocketTemplate | cmp_node_combrgba_out [] |
Definition in file node_composite_sepcombRGBA.c.
| static void do_combrgba | ( | bNode * | UNUSEDnode, |
| float * | out, | ||
| float * | in1, | ||
| float * | in2, | ||
| float * | in3, | ||
| float * | in4 | ||
| ) | [static] |
Definition at line 107 of file node_composite_sepcombRGBA.c.
Referenced by node_composit_exec_combrgba().
| static void node_composit_exec_combrgba | ( | void * | UNUSEDdata, |
| bNode * | node, | ||
| bNodeStack ** | in, | ||
| bNodeStack ** | out | ||
| ) | [static] |
Definition at line 115 of file node_composite_sepcombRGBA.c.
References alloc_compbuf(), CB_RGBA, CB_VAL, composit4_pixel_processor(), bNodeStack::data, data, do_combrgba(), NULL, bNodeStack::vec, CompBuf::x, and CompBuf::y.
Referenced by register_node_type_cmp_combrgba().
| static void node_composit_exec_seprgba | ( | void * | UNUSEDdata, |
| bNode * | UNUSEDnode, | ||
| bNodeStack ** | in, | ||
| bNodeStack ** | out | ||
| ) | [static] |
Definition at line 48 of file node_composite_sepcombRGBA.c.
References CB_RGBA, CHAN_A, CHAN_B, CHAN_G, CHAN_R, bNodeStack::data, data, free_compbuf(), NULL, typecheck_compbuf(), valbuf_from_rgbabuf(), and bNodeStack::vec.
Referenced by register_node_type_cmp_seprgba().
| void register_node_type_cmp_combrgba | ( | bNodeTreeType * | ttype | ) |
Definition at line 148 of file node_composite_sepcombRGBA.c.
References CMP_NODE_COMBRGBA, NODE_CLASS_CONVERTOR, node_composit_exec_combrgba(), NODE_OPTIONS, node_type_base(), node_type_exec(), node_type_size(), node_type_socket_templates(), and nodeRegisterType().
Referenced by registerCompositNodes().
| void register_node_type_cmp_seprgba | ( | bNodeTreeType * | ttype | ) |
Definition at line 80 of file node_composite_sepcombRGBA.c.
References CMP_NODE_SEPRGBA, NODE_CLASS_CONVERTOR, node_composit_exec_seprgba(), node_type_base(), node_type_exec(), node_type_size(), node_type_socket_templates(), and nodeRegisterType().
Referenced by registerCompositNodes().
bNodeSocketTemplate cmp_node_combrgba_in[] [static] |
{
{ SOCK_FLOAT, 1, "R", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, PROP_NONE},
{ SOCK_FLOAT, 1, "G", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, PROP_NONE},
{ SOCK_FLOAT, 1, "B", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, PROP_NONE},
{ SOCK_FLOAT, 1, "A", 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, PROP_NONE},
{ -1, 0, "" }
}
Definition at line 95 of file node_composite_sepcombRGBA.c.
bNodeSocketTemplate cmp_node_combrgba_out[] [static] |
{
{ SOCK_RGBA, 0, "Image"},
{ -1, 0, "" }
}
Definition at line 102 of file node_composite_sepcombRGBA.c.
bNodeSocketTemplate cmp_node_seprgba_in[] [static] |
{
{ SOCK_RGBA, 1, "Image", 1.0f, 1.0f, 1.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 36 of file node_composite_sepcombRGBA.c.
bNodeSocketTemplate cmp_node_seprgba_out[] [static] |
{
{ SOCK_FLOAT, 0, "R"},
{ SOCK_FLOAT, 0, "G"},
{ SOCK_FLOAT, 0, "B"},
{ SOCK_FLOAT, 0, "A"},
{ -1, 0, "" }
}
Definition at line 40 of file node_composite_sepcombRGBA.c.