|
Blender
V2.59
|
#include "../CMP_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 (ListBase *lb) |
| 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 (ListBase *lb) |
Variables | |
| static bNodeSocketType | cmp_node_seprgba_in [] |
| static bNodeSocketType | cmp_node_seprgba_out [] |
| static bNodeSocketType | cmp_node_combrgba_in [] |
| static bNodeSocketType | cmp_node_combrgba_out [] |
Definition in file CMP_sepcombRGBA.c.
| static void do_combrgba | ( | bNode * | UNUSEDnode, |
| float * | out, | ||
| float * | in1, | ||
| float * | in2, | ||
| float * | in3, | ||
| float * | in4 | ||
| ) | [static] |
Definition at line 109 of file CMP_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 117 of file CMP_sepcombRGBA.c.
References alloc_compbuf(), CB_RGBA, CB_VAL, composit4_pixel_processor(), bNodeStack::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 50 of file CMP_sepcombRGBA.c.
References CB_RGBA, CHAN_A, CHAN_B, CHAN_G, CHAN_R, bNodeStack::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 | ( | ListBase * | lb | ) |
Definition at line 150 of file CMP_sepcombRGBA.c.
References CMP_NODE_COMBRGBA, NODE_CLASS_CONVERTOR, node_composit_exec_combrgba(), NODE_OPTIONS, node_type_base(), node_type_exec(), node_type_size(), and nodeRegisterType().
Referenced by registerCompositNodes().
| void register_node_type_cmp_seprgba | ( | ListBase * | lb | ) |
Definition at line 82 of file CMP_sepcombRGBA.c.
References CMP_NODE_SEPRGBA, NODE_CLASS_CONVERTOR, node_composit_exec_seprgba(), node_type_base(), node_type_exec(), node_type_size(), and nodeRegisterType().
Referenced by registerCompositNodes().
bNodeSocketType cmp_node_combrgba_in[] [static] |
{
{ SOCK_VALUE, 1, "R", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 1, "G", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 1, "B", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 1, "A", 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 97 of file CMP_sepcombRGBA.c.
bNodeSocketType cmp_node_combrgba_out[] [static] |
{
{ SOCK_RGBA, 0, "Image", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 104 of file CMP_sepcombRGBA.c.
bNodeSocketType cmp_node_seprgba_in[] [static] |
{
{ SOCK_RGBA, 1, "Image", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 38 of file CMP_sepcombRGBA.c.
bNodeSocketType cmp_node_seprgba_out[] [static] |
{
{ SOCK_VALUE, 0, "R", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 0, "G", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 0, "B", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 0, "A", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 42 of file CMP_sepcombRGBA.c.