|
Blender
V2.59
|
Go to the source code of this file.
Functions | |
| static void | valuefn_r (float *out, TexParams *p, bNode *UNUSED(node), bNodeStack **in, short thread) |
| static void | valuefn_g (float *out, TexParams *p, bNode *UNUSED(node), bNodeStack **in, short thread) |
| static void | valuefn_b (float *out, TexParams *p, bNode *UNUSED(node), bNodeStack **in, short thread) |
| static void | valuefn_a (float *out, TexParams *p, bNode *UNUSED(node), bNodeStack **in, short thread) |
| static void | exec (void *data, bNode *node, bNodeStack **in, bNodeStack **out) |
| void | register_node_type_tex_decompose (ListBase *lb) |
Variables | |
| static bNodeSocketType | inputs [] |
| static bNodeSocketType | outputs [] |
Definition in file TEX_decompose.c.
| static void exec | ( | void * | data, |
| bNode * | node, | ||
| bNodeStack ** | in, | ||
| bNodeStack ** | out | ||
| ) | [static] |
Definition at line 74 of file TEX_decompose.c.
References tex_output(), valuefn_a(), valuefn_b(), valuefn_g(), and valuefn_r().
Referenced by register_node_type_tex_decompose().
| void register_node_type_tex_decompose | ( | ListBase * | lb | ) |
Definition at line 82 of file TEX_decompose.c.
References exec(), NODE_CLASS_OP_COLOR, node_type_base(), node_type_exec(), node_type_size(), nodeRegisterType(), and TEX_NODE_DECOMPOSE.
Referenced by registerTextureNodes().
| static void valuefn_a | ( | float * | out, |
| TexParams * | p, | ||
| bNode * | UNUSEDnode, | ||
| bNodeStack ** | in, | ||
| short | thread | ||
| ) | [static] |
| static void valuefn_b | ( | float * | out, |
| TexParams * | p, | ||
| bNode * | UNUSEDnode, | ||
| bNodeStack ** | in, | ||
| short | thread | ||
| ) | [static] |
| static void valuefn_g | ( | float * | out, |
| TexParams * | p, | ||
| bNode * | UNUSEDnode, | ||
| bNodeStack ** | in, | ||
| short | thread | ||
| ) | [static] |
| static void valuefn_r | ( | float * | out, |
| TexParams * | p, | ||
| bNode * | UNUSEDnode, | ||
| bNodeStack ** | in, | ||
| short | thread | ||
| ) | [static] |
bNodeSocketType inputs[] [static] |
{
{ SOCK_RGBA, 1, "Color", 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f },
{ -1, 0, "" }
}
Definition at line 38 of file TEX_decompose.c.
bNodeSocketType outputs[] [static] |
{
{ SOCK_VALUE, 0, "Red", 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f },
{ SOCK_VALUE, 0, "Green", 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f },
{ SOCK_VALUE, 0, "Blue", 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f },
{ SOCK_VALUE, 0, "Alpha", 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f },
{ -1, 0, "" }
}
Definition at line 42 of file TEX_decompose.c.