Blender Git Commit Log
Git Commits -> Revision 23a8864
Revision 23a8864 by Jacques Lucke (builtin-simulation-nodes, functions, functions-experimental-refactor, particle-solver-dev, simulation-tree) April 5, 2019, 09:32 (GMT) |
Splitup C API for separate components in different files |
Commit Details:
Full Hash: 23a8864669115d4a00978ee31924fa1249d05b58
Parent Commit: 072fbb0
Lines Changed: +575, -444
19 Added Paths:
/source/blender/functions/backends/dependencies/dependencies-c.cpp (+16, -0) (View)
/source/blender/functions/backends/dependencies/dependencies-c.h (+19, -0) (View)
/source/blender/functions/backends/tuple_call/tuple_call-c.cpp (+75, -0) (View)
/source/blender/functions/backends/tuple_call/tuple_call-c.h (+59, -0) (View)
/source/blender/functions/core/core-c.cpp (+57, -0) (View)
/source/blender/functions/core/core-c.h (+38, -0) (View)
/source/blender/functions/FN_all-c.h (+20, -0) (View)
/source/blender/functions/FN_core-c.h (+6, -0) (View)
/source/blender/functions/FN_data_flow_nodes-c.h (+6, -0) (View)
/source/blender/functions/FN_dependencies-c.h (+6, -0) (View)
/source/blender/functions/FN_tuple_call-c.h (+6, -0) (View)
/source/blender/functions/FN_types-c.h (+7, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/data_flow_nodes-c.cpp (+38, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/data_flow_nodes-c.h (+22, -0) (View)
/source/blender/functions/initialize.cpp (+6, -0) (View)
/source/blender/functions/types/tuple_access-c.cpp (+46, -0) (View)
/source/blender/functions/types/tuple_access-c.h (+25, -0) (View)
/source/blender/functions/types/types-c.cpp (+43, -0) (View)
/source/blender/functions/types/types-c.h (+47, -0) (View)
/source/blender/functions/backends/dependencies/dependencies-c.h (+19, -0) (View)
/source/blender/functions/backends/tuple_call/tuple_call-c.cpp (+75, -0) (View)
/source/blender/functions/backends/tuple_call/tuple_call-c.h (+59, -0) (View)
/source/blender/functions/core/core-c.cpp (+57, -0) (View)
/source/blender/functions/core/core-c.h (+38, -0) (View)
/source/blender/functions/FN_all-c.h (+20, -0) (View)
/source/blender/functions/FN_core-c.h (+6, -0) (View)
/source/blender/functions/FN_data_flow_nodes-c.h (+6, -0) (View)
/source/blender/functions/FN_dependencies-c.h (+6, -0) (View)
/source/blender/functions/FN_tuple_call-c.h (+6, -0) (View)
/source/blender/functions/FN_types-c.h (+7, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/data_flow_nodes-c.cpp (+38, -0) (View)
/source/blender/functions/frontends/data_flow_nodes/data_flow_nodes-c.h (+22, -0) (View)
/source/blender/functions/initialize.cpp (+6, -0) (View)
/source/blender/functions/types/tuple_access-c.cpp (+46, -0) (View)
/source/blender/functions/types/tuple_access-c.h (+25, -0) (View)
/source/blender/functions/types/types-c.cpp (+43, -0) (View)
/source/blender/functions/types/types-c.h (+47, -0) (View)
2 Deleted Paths:
/source/blender/functions/c_wrapper.cpp (+0, -308)
/source/blender/functions/FN-C.h (+0, -129)
/source/blender/functions/FN-C.h (+0, -129)
12 Modified Paths:
/source/blender/blenkernel/intern/fcurve.c (+1, -1) (Diff)
/source/blender/functions/CMakeLists.txt (+19, -2) (Diff)
/source/blender/functions/FN_all.hpp (+1, -0) (Diff)
/source/blender/functions/FN_core.hpp (+1, -0) (Diff)
/source/blender/functions/FN_data_flow_nodes.hpp (+1, -0) (Diff)
/source/blender/functions/FN_dependencies.hpp (+1, -0) (Diff)
/source/blender/functions/FN_tuple_call.hpp (+1, -0) (Diff)
/source/blender/functions/FN_types.hpp (+1, -0) (Diff)
/source/blender/modifiers/intern/MOD_displace.c (+2, -1) (Diff)
/source/blender/modifiers/intern/MOD_functiondeform.c (+2, -1) (Diff)
/source/blender/modifiers/intern/MOD_functionpoints.c (+2, -1) (Diff)
/source/creator/creator.c (+1, -1) (Diff)
/source/blender/functions/CMakeLists.txt (+19, -2) (Diff)
/source/blender/functions/FN_all.hpp (+1, -0) (Diff)
/source/blender/functions/FN_core.hpp (+1, -0) (Diff)
/source/blender/functions/FN_data_flow_nodes.hpp (+1, -0) (Diff)
/source/blender/functions/FN_dependencies.hpp (+1, -0) (Diff)
/source/blender/functions/FN_tuple_call.hpp (+1, -0) (Diff)
/source/blender/functions/FN_types.hpp (+1, -0) (Diff)
/source/blender/modifiers/intern/MOD_displace.c (+2, -1) (Diff)
/source/blender/modifiers/intern/MOD_functiondeform.c (+2, -1) (Diff)
/source/blender/modifiers/intern/MOD_functionpoints.c (+2, -1) (Diff)
/source/creator/creator.c (+1, -1) (Diff)