|
Blender
V2.59
|
#include "../CMP_util.h"Go to the source code of this file.
Functions | |
| static void | node_composit_exec_vecblur (void *UNUSED(data), bNode *node, bNodeStack **in, bNodeStack **out) |
| static void | node_composit_init_vecblur (bNode *node) |
| void | register_node_type_cmp_vecblur (ListBase *lb) |
Variables | |
| static bNodeSocketType | cmp_node_vecblur_in [] |
| static bNodeSocketType | cmp_node_vecblur_out [] |
Definition in file CMP_vecBlur.c.
| static void node_composit_exec_vecblur | ( | void * | UNUSEDdata, |
| bNode * | node, | ||
| bNodeStack ** | in, | ||
| bNodeStack ** | out | ||
| ) | [static] |
Definition at line 52 of file CMP_vecBlur.c.
References CB_RGBA, CB_VAL, CB_VEC4, bNodeStack::data, dupalloc_compbuf(), free_compbuf(), NULL, RE_zbuf_accumulate_vecblur(), CompBuf::rect, bNode::storage, typecheck_compbuf(), CompBuf::x, and CompBuf::y.
Referenced by register_node_type_cmp_vecblur().
| static void node_composit_init_vecblur | ( | bNode * | node | ) | [static] |
Definition at line 90 of file CMP_vecBlur.c.
References NodeBlurData::fac, MEM_callocN(), NodeBlurData::samples, and bNode::storage.
Referenced by register_node_type_cmp_vecblur().
| void register_node_type_cmp_vecblur | ( | ListBase * | lb | ) |
Definition at line 99 of file CMP_vecBlur.c.
References CMP_NODE_VECBLUR, NODE_CLASS_OP_FILTER, node_composit_exec_vecblur(), node_composit_init_vecblur(), node_copy_standard_storage(), node_free_standard_storage(), NODE_OPTIONS, node_type_base(), node_type_exec(), node_type_init(), node_type_size(), node_type_storage(), and nodeRegisterType().
Referenced by registerCompositNodes().
bNodeSocketType cmp_node_vecblur_in[] [static] |
{
{ SOCK_RGBA, 1, "Image", 0.8f, 0.8f, 0.8f, 1.0f, 0.0f, 1.0f},
{ SOCK_VALUE, 1, "Z", 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f},
{ SOCK_VECTOR, 1, "Speed", 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 39 of file CMP_vecBlur.c.
bNodeSocketType cmp_node_vecblur_out[] [static] |
{
{ SOCK_RGBA, 0, "Image", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f},
{ -1, 0, "" }
}
Definition at line 45 of file CMP_vecBlur.c.