Blender Git Loki
Git Commits -> Revision 7333478
Revision 7333478 by Jacques Lucke (builtin-simulation-nodes, functions, functions-experimental-refactor, functions-temp, particle-solver-dev, simulation-tree) March 1, 2019, 12:41 (GMT) |
refactor function generation from data flow nodes |
Commit Details:
Full Hash: 73334782202438be7aaa4b443ee356a23547fa50
Parent Commit: 4a502be
Lines Changed: +528, -326
11 Added Paths:
/source/blender/functions/frontends/data_flow_nodes/builder.cpp (+63, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/builder.hpp (+47, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/function_generation.cpp (+22, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/function_generation.hpp (+12, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/inserters.cpp (+75, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/inserters.hpp (+45, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/registry.hpp (+10, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/test_sockets.cpp (+36, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/util_wrappers.hpp (+15, -0) (View)
/source/blender/functions/functions/socket_input.cpp (+71, -0) (View)
/source/blender/functions/functions/socket_input.hpp (+18, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/builder.hpp (+47, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/function_generation.cpp (+22, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/function_generation.hpp (+12, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/inserters.cpp (+75, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/inserters.hpp (+45, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/registry.hpp (+10, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/test_sockets.cpp (+36, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/util_wrappers.hpp (+15, -0) (View)
/source/blender/functions/functions/socket_input.cpp (+71, -0) (View)
/source/blender/functions/functions/socket_input.hpp (+18, -0) (View)
3 Deleted Paths:
/source/blender/functions/frontends/data_flow_nodes/nodes.cpp (+0, -78)
/source/blender/functions/frontends/data_flow_nodes/nodes.hpp (+0, -56)
/source/blender/functions/frontends/data_flow_nodes/socket_inputs.cpp (+0, -79)
/source/blender/functions/frontends/data_flow_nodes/nodes.hpp (+0, -56)
/source/blender/functions/frontends/data_flow_nodes/socket_inputs.cpp (+0, -79)
7 Modified Paths:
/source/blender/functions/CMakeLists.txt (+11, -3) (Diff)
/source/blender/functions/c_wrapper.cpp (+5, -7) (Diff)
/source/blender/functions/FN_data_flow_nodes.hpp (+1, -2) (Diff)
/source/blender/functions/FN_functions.hpp (+2, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp (+53, -61) (Diff)
/source/blender/functions/frontends/data_flow_nodes/graph_generation.hpp (+6, -3) (Diff)
/source/blender/functions/frontends/data_flow_nodes/test_nodes.cpp (+36, -36) (Diff)
/source/blender/functions/c_wrapper.cpp (+5, -7) (Diff)
/source/blender/functions/FN_data_flow_nodes.hpp (+1, -2) (Diff)
/source/blender/functions/FN_functions.hpp (+2, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/graph_generation.cpp (+53, -61) (Diff)
/source/blender/functions/frontends/data_flow_nodes/graph_generation.hpp (+6, -3) (Diff)
/source/blender/functions/frontends/data_flow_nodes/test_nodes.cpp (+36, -36) (Diff)