Blender Git Commit Log
Git Commits -> Revision 2e21ec0
Revision 2e21ec0 by Jacques Lucke (builtin-simulation-nodes, functions, functions-experimental-refactor, particle-solver-dev, simulation-tree) September 12, 2019, 10:41 (GMT) |
change .hpp to .h in blenlib |
Commit Details:
Full Hash: 2e21ec0d8813a14d57aaedce292ed91ddde2fe8a
Parent Commit: 54350b7
Lines Changed: +5862, -5862
30 Added Paths:
/source/blender/blenlib/BLI_allocator.h (+127, -0) (View)
/source/blender/blenlib/BLI_array_cxx.h (+195, -0) (View)
/source/blender/blenlib/BLI_array_ref.h (+423, -0) (View)
/source/blender/blenlib/BLI_bit_array_ref.h (+100, -0) (View)
/source/blender/blenlib/BLI_chained_strings.h (+76, -0) (View)
/source/blender/blenlib/BLI_chunked_range.h (+57, -0) (View)
/source/blender/blenlib/BLI_index_range.h (+193, -0) (View)
/source/blender/blenlib/BLI_lazy_init_cxx.h (+63, -0) (View)
/source/blender/blenlib/BLI_listbase_wrapper.h (+97, -0) (View)
/source/blender/blenlib/BLI_map.h (+596, -0) (View)
/source/blender/blenlib/BLI_math_cxx.h (+416, -0) (View)
/source/blender/blenlib/BLI_memory.h (+61, -0) (View)
/source/blender/blenlib/BLI_monotonic_allocator.h (+96, -0) (View)
/source/blender/blenlib/BLI_multi_map.h (+162, -0) (View)
/source/blender/blenlib/BLI_multi_vector.h (+63, -0) (View)
/source/blender/blenlib/BLI_object_pool.h (+98, -0) (View)
/source/blender/blenlib/BLI_open_addressing.h (+302, -0) (View)
/source/blender/blenlib/BLI_optional.h (+171, -0) (View)
/source/blender/blenlib/BLI_refcount.h (+242, -0) (View)
/source/blender/blenlib/BLI_set.h (+471, -0) (View)
/source/blender/blenlib/BLI_set_vector.h (+335, -0) (View)
/source/blender/blenlib/BLI_stack_cxx.h (+142, -0) (View)
/source/blender/blenlib/BLI_string_map.h (+378, -0) (View)
/source/blender/blenlib/BLI_string_ref.h (+239, -0) (View)
/source/blender/blenlib/BLI_task_cxx.h (+166, -0) (View)
/source/blender/blenlib/BLI_temporary_allocator_cxx.h (+15, -0) (View)
/source/blender/blenlib/BLI_timeit.h (+138, -0) (View)
/source/blender/blenlib/BLI_utility_mixins.h (+29, -0) (View)
/source/blender/blenlib/BLI_value_or_error.h (+88, -0) (View)
/source/blender/blenlib/BLI_vector_adaptor.h (+176, -0) (View)
/source/blender/blenlib/BLI_array_cxx.h (+195, -0) (View)
/source/blender/blenlib/BLI_array_ref.h (+423, -0) (View)
/source/blender/blenlib/BLI_bit_array_ref.h (+100, -0) (View)
/source/blender/blenlib/BLI_chained_strings.h (+76, -0) (View)
/source/blender/blenlib/BLI_chunked_range.h (+57, -0) (View)
/source/blender/blenlib/BLI_index_range.h (+193, -0) (View)
/source/blender/blenlib/BLI_lazy_init_cxx.h (+63, -0) (View)
/source/blender/blenlib/BLI_listbase_wrapper.h (+97, -0) (View)
/source/blender/blenlib/BLI_map.h (+596, -0) (View)
/source/blender/blenlib/BLI_math_cxx.h (+416, -0) (View)
/source/blender/blenlib/BLI_memory.h (+61, -0) (View)
/source/blender/blenlib/BLI_monotonic_allocator.h (+96, -0) (View)
/source/blender/blenlib/BLI_multi_map.h (+162, -0) (View)
/source/blender/blenlib/BLI_multi_vector.h (+63, -0) (View)
/source/blender/blenlib/BLI_object_pool.h (+98, -0) (View)
/source/blender/blenlib/BLI_open_addressing.h (+302, -0) (View)
/source/blender/blenlib/BLI_optional.h (+171, -0) (View)
/source/blender/blenlib/BLI_refcount.h (+242, -0) (View)
/source/blender/blenlib/BLI_set.h (+471, -0) (View)
/source/blender/blenlib/BLI_set_vector.h (+335, -0) (View)
/source/blender/blenlib/BLI_stack_cxx.h (+142, -0) (View)
/source/blender/blenlib/BLI_string_map.h (+378, -0) (View)
/source/blender/blenlib/BLI_string_ref.h (+239, -0) (View)
/source/blender/blenlib/BLI_task_cxx.h (+166, -0) (View)
/source/blender/blenlib/BLI_temporary_allocator_cxx.h (+15, -0) (View)
/source/blender/blenlib/BLI_timeit.h (+138, -0) (View)
/source/blender/blenlib/BLI_utility_mixins.h (+29, -0) (View)
/source/blender/blenlib/BLI_value_or_error.h (+88, -0) (View)
/source/blender/blenlib/BLI_vector_adaptor.h (+176, -0) (View)
30 Deleted Paths:
/source/blender/blenlib/BLI_allocator.hpp (+0, -127)
/source/blender/blenlib/BLI_array.hpp (+0, -195)
/source/blender/blenlib/BLI_array_ref.hpp (+0, -423)
/source/blender/blenlib/BLI_bit_array_ref.hpp (+0, -100)
/source/blender/blenlib/BLI_chained_strings.hpp (+0, -76)
/source/blender/blenlib/BLI_chunked_range.hpp (+0, -57)
/source/blender/blenlib/BLI_index_range.hpp (+0, -193)
/source/blender/blenlib/BLI_lazy_init.hpp (+0, -63)
/source/blender/blenlib/BLI_listbase_wrapper.hpp (+0, -97)
/source/blender/blenlib/BLI_map.hpp (+0, -596)
/source/blender/blenlib/BLI_math.hpp (+0, -416)
/source/blender/blenlib/BLI_memory.hpp (+0, -61)
/source/blender/blenlib/BLI_monotonic_allocator.hpp (+0, -96)
/source/blender/blenlib/BLI_multi_map.hpp (+0, -162)
/source/blender/blenlib/BLI_multi_vector.hpp (+0, -63)
/source/blender/blenlib/BLI_object_pool.hpp (+0, -98)
/source/blender/blenlib/BLI_open_addressing.hpp (+0, -302)
/source/blender/blenlib/BLI_optional.hpp (+0, -171)
/source/blender/blenlib/BLI_refcount.hpp (+0, -242)
/source/blender/blenlib/BLI_set.hpp (+0, -471)
/source/blender/blenlib/BLI_set_vector.hpp (+0, -335)
/source/blender/blenlib/BLI_stack.hpp (+0, -142)
/source/blender/blenlib/BLI_string_map.hpp (+0, -378)
/source/blender/blenlib/BLI_string_ref.hpp (+0, -239)
/source/blender/blenlib/BLI_task.hpp (+0, -166)
/source/blender/blenlib/BLI_temporary_allocator.hpp (+0, -15)
/source/blender/blenlib/BLI_timeit.hpp (+0, -138)
/source/blender/blenlib/BLI_utility_mixins.hpp (+0, -29)
/source/blender/blenlib/BLI_value_or_error.hpp (+0, -88)
/source/blender/blenlib/BLI_vector_adaptor.hpp (+0, -176)
/source/blender/blenlib/BLI_array.hpp (+0, -195)
/source/blender/blenlib/BLI_array_ref.hpp (+0, -423)
/source/blender/blenlib/BLI_bit_array_ref.hpp (+0, -100)
/source/blender/blenlib/BLI_chained_strings.hpp (+0, -76)
/source/blender/blenlib/BLI_chunked_range.hpp (+0, -57)
/source/blender/blenlib/BLI_index_range.hpp (+0, -193)
/source/blender/blenlib/BLI_lazy_init.hpp (+0, -63)
/source/blender/blenlib/BLI_listbase_wrapper.hpp (+0, -97)
/source/blender/blenlib/BLI_map.hpp (+0, -596)
/source/blender/blenlib/BLI_math.hpp (+0, -416)
/source/blender/blenlib/BLI_memory.hpp (+0, -61)
/source/blender/blenlib/BLI_monotonic_allocator.hpp (+0, -96)
/source/blender/blenlib/BLI_multi_map.hpp (+0, -162)
/source/blender/blenlib/BLI_multi_vector.hpp (+0, -63)
/source/blender/blenlib/BLI_object_pool.hpp (+0, -98)
/source/blender/blenlib/BLI_open_addressing.hpp (+0, -302)
/source/blender/blenlib/BLI_optional.hpp (+0, -171)
/source/blender/blenlib/BLI_refcount.hpp (+0, -242)
/source/blender/blenlib/BLI_set.hpp (+0, -471)
/source/blender/blenlib/BLI_set_vector.hpp (+0, -335)
/source/blender/blenlib/BLI_stack.hpp (+0, -142)
/source/blender/blenlib/BLI_string_map.hpp (+0, -378)
/source/blender/blenlib/BLI_string_ref.hpp (+0, -239)
/source/blender/blenlib/BLI_task.hpp (+0, -166)
/source/blender/blenlib/BLI_temporary_allocator.hpp (+0, -15)
/source/blender/blenlib/BLI_timeit.hpp (+0, -138)
/source/blender/blenlib/BLI_utility_mixins.hpp (+0, -29)
/source/blender/blenlib/BLI_value_or_error.hpp (+0, -88)
/source/blender/blenlib/BLI_vector_adaptor.hpp (+0, -176)
81 Modified Paths:
/source/blender/blenkernel/BKE_attributes_block_container.hpp (+1, -1) (Diff)
/source/blender/blenkernel/BKE_attributes_ref.hpp (+8, -8) (Diff)
/source/blender/blenkernel/BKE_node_tree.hpp (+6, -6) (Diff)
/source/blender/blenkernel/intern/falloff.cpp (+1, -1) (Diff)
/source/blender/blenkernel/intern/node_tree.cpp (+1, -1) (Diff)
/source/blender/blenlib/BLI_vector.h (+4, -4) (Diff)
/source/blender/blenlib/CMakeLists.txt (+26, -26) (Diff)
/source/blender/blenlib/intern/BLI_index_range.cpp (+3, -3) (Diff)
/source/blender/blenlib/intern/BLI_lazy_init.cpp (+2, -2) (Diff)
/source/blender/blenlib/intern/BLI_temporary_allocator.cpp (+1, -1) (Diff)
/source/blender/functions/backends/cpp/list.hpp (+2, -2) (Diff)
/source/blender/functions/backends/dependencies/dependencies.hpp (+1, -1) (Diff)
/source/blender/functions/backends/llvm/builder.hpp (+1, -1) (Diff)
/source/blender/functions/backends/llvm/context_pool.cpp (+1, -1) (Diff)
/source/blender/functions/backends/tuple_call/execution_context.hpp (+1, -1) (Diff)
/source/blender/functions/backends/tuple_call/fgraph_tuple_call.cpp (+1, -1) (Diff)
/source/blender/functions/core/data_graph.hpp (+3, -3) (Diff)
/source/blender/functions/core/data_graph_builder.hpp (+1, -1) (Diff)
/source/blender/functions/core/function.hpp (+2, -2) (Diff)
/source/blender/functions/core/function_graph.hpp (+2, -2) (Diff)
/source/blender/functions/core/type.hpp (+3, -3) (Diff)
/source/blender/functions/frontends/data_flow_nodes/data_flow_nodes-c.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/function_generation.hpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/graph_generation.hpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings.hpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/type_mappings.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/vtree_data_graph.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/vtree_data_graph.hpp (+2, -2) (Diff)
/source/blender/functions/frontends/data_flow_nodes/vtree_data_graph_builder.hpp (+1, -1) (Diff)
/source/blender/functions/functions/auto_vectorization.cpp (+1, -1) (Diff)
/source/blender/functions/functions/boolean.cpp (+1, -1) (Diff)
/source/blender/functions/functions/color.cpp (+1, -1) (Diff)
/source/blender/functions/functions/comparisons.cpp (+1, -1) (Diff)
/source/blender/functions/functions/constants.cpp (+1, -1) (Diff)
/source/blender/functions/functions/falloffs.cpp (+1, -1) (Diff)
/source/blender/functions/functions/lists.cpp (+1, -1) (Diff)
/source/blender/functions/functions/object_input.cpp (+1, -1) (Diff)
/source/blender/functions/functions/random.cpp (+1, -1) (Diff)
/source/blender/functions/functions/ranges.cpp (+1, -1) (Diff)
/source/blender/functions/functions/scalar_math.cpp (+1, -1) (Diff)
/source/blender/functions/functions/simple_conversions.cpp (+1, -1) (Diff)
/source/blender/functions/functions/string.cpp (+1, -1) (Diff)
/source/blender/functions/functions/switch.cpp (+1, -1) (Diff)
/source/blender/functions/functions/vectors.cpp (+1, -1) (Diff)
/source/blender/functions/types/boolean.cpp (+1, -1) (Diff)
/source/blender/functions/types/external.cpp (+1, -1) (Diff)
/source/blender/functions/types/lists.cpp (+1, -1) (Diff)
/source/blender/functions/types/numeric.cpp (+1, -1) (Diff)
/source/blender/functions/types/numeric.hpp (+1, -1) (Diff)
/source/blender/functions/types/string_type.cpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/action_contexts.hpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/action_interface.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/c_wrapper.cpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/emitters.cpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/node_frontend.cpp (+3, -3) (Diff)
/source/blender/simulations/bparticles/particle_function.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/particle_function_builder.cpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/particle_function_builder.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/simulate.cpp (+5, -5) (Diff)
/source/blender/simulations/bparticles/time_span.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/world_state.hpp (+4, -4) (Diff)
/tests/gtests/blenlib/BLI_array_ref_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_array_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_bit_array_ref_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_chained_strings_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_chunked_range_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_index_range_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_lazy_init_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_map_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_multi_map_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_multi_vector_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_optional_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_refcount_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_set_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_set_vector_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_stack_cpp_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_string_map_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_string_ref_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_vector_adaptor_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_vector_test.cc (+1, -1) (Diff)
/source/blender/blenkernel/BKE_attributes_ref.hpp (+8, -8) (Diff)
/source/blender/blenkernel/BKE_node_tree.hpp (+6, -6) (Diff)
/source/blender/blenkernel/intern/falloff.cpp (+1, -1) (Diff)
/source/blender/blenkernel/intern/node_tree.cpp (+1, -1) (Diff)
/source/blender/blenlib/BLI_vector.h (+4, -4) (Diff)
/source/blender/blenlib/CMakeLists.txt (+26, -26) (Diff)
/source/blender/blenlib/intern/BLI_index_range.cpp (+3, -3) (Diff)
/source/blender/blenlib/intern/BLI_lazy_init.cpp (+2, -2) (Diff)
/source/blender/blenlib/intern/BLI_temporary_allocator.cpp (+1, -1) (Diff)
/source/blender/functions/backends/cpp/list.hpp (+2, -2) (Diff)
/source/blender/functions/backends/dependencies/dependencies.hpp (+1, -1) (Diff)
/source/blender/functions/backends/llvm/builder.hpp (+1, -1) (Diff)
/source/blender/functions/backends/llvm/context_pool.cpp (+1, -1) (Diff)
/source/blender/functions/backends/tuple_call/execution_context.hpp (+1, -1) (Diff)
/source/blender/functions/backends/tuple_call/fgraph_tuple_call.cpp (+1, -1) (Diff)
/source/blender/functions/core/data_graph.hpp (+3, -3) (Diff)
/source/blender/functions/core/data_graph_builder.hpp (+1, -1) (Diff)
/source/blender/functions/core/function.hpp (+2, -2) (Diff)
/source/blender/functions/core/function_graph.hpp (+2, -2) (Diff)
/source/blender/functions/core/type.hpp (+3, -3) (Diff)
/source/blender/functions/frontends/data_flow_nodes/data_flow_nodes-c.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/function_generation.hpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/graph_generation.hpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings.hpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/mappings/type_mappings.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/vtree_data_graph.cpp (+1, -1) (Diff)
/source/blender/functions/frontends/data_flow_nodes/vtree_data_graph.hpp (+2, -2) (Diff)
/source/blender/functions/frontends/data_flow_nodes/vtree_data_graph_builder.hpp (+1, -1) (Diff)
/source/blender/functions/functions/auto_vectorization.cpp (+1, -1) (Diff)
/source/blender/functions/functions/boolean.cpp (+1, -1) (Diff)
/source/blender/functions/functions/color.cpp (+1, -1) (Diff)
/source/blender/functions/functions/comparisons.cpp (+1, -1) (Diff)
/source/blender/functions/functions/constants.cpp (+1, -1) (Diff)
/source/blender/functions/functions/falloffs.cpp (+1, -1) (Diff)
/source/blender/functions/functions/lists.cpp (+1, -1) (Diff)
/source/blender/functions/functions/object_input.cpp (+1, -1) (Diff)
/source/blender/functions/functions/random.cpp (+1, -1) (Diff)
/source/blender/functions/functions/ranges.cpp (+1, -1) (Diff)
/source/blender/functions/functions/scalar_math.cpp (+1, -1) (Diff)
/source/blender/functions/functions/simple_conversions.cpp (+1, -1) (Diff)
/source/blender/functions/functions/string.cpp (+1, -1) (Diff)
/source/blender/functions/functions/switch.cpp (+1, -1) (Diff)
/source/blender/functions/functions/vectors.cpp (+1, -1) (Diff)
/source/blender/functions/types/boolean.cpp (+1, -1) (Diff)
/source/blender/functions/types/external.cpp (+1, -1) (Diff)
/source/blender/functions/types/lists.cpp (+1, -1) (Diff)
/source/blender/functions/types/numeric.cpp (+1, -1) (Diff)
/source/blender/functions/types/numeric.hpp (+1, -1) (Diff)
/source/blender/functions/types/string_type.cpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/action_contexts.hpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/action_interface.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/c_wrapper.cpp (+2, -2) (Diff)
/source/blender/simulations/bparticles/emitters.cpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/node_frontend.cpp (+3, -3) (Diff)
/source/blender/simulations/bparticles/particle_function.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/particle_function_builder.cpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/particle_function_builder.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/simulate.cpp (+5, -5) (Diff)
/source/blender/simulations/bparticles/time_span.hpp (+1, -1) (Diff)
/source/blender/simulations/bparticles/world_state.hpp (+4, -4) (Diff)
/tests/gtests/blenlib/BLI_array_ref_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_array_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_bit_array_ref_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_chained_strings_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_chunked_range_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_index_range_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_lazy_init_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_map_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_multi_map_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_multi_vector_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_optional_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_refcount_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_set_test.cc (+2, -2) (Diff)
/tests/gtests/blenlib/BLI_set_vector_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_stack_cpp_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_string_map_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_string_ref_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_vector_adaptor_test.cc (+1, -1) (Diff)
/tests/gtests/blenlib/BLI_vector_test.cc (+1, -1) (Diff)