Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_customdata.h
| Show First 20 Lines • Show All 248 Lines • ▼ Show 20 Lines | void CustomData_copy_data(const struct CustomData *source, | ||||
| int source_index, | int source_index, | ||||
| int dest_index, | int dest_index, | ||||
| int count); | int count); | ||||
| void CustomData_copy_data_named(const struct CustomData *source, | void CustomData_copy_data_named(const struct CustomData *source, | ||||
| struct CustomData *dest, | struct CustomData *dest, | ||||
| int source_index, | int source_index, | ||||
| int dest_index, | int dest_index, | ||||
| int count); | int count); | ||||
| void CustomData_copy_data_layer(const CustomData *source, | |||||
| CustomData *dest, | |||||
| int src_i, | |||||
| int dst_i, | |||||
| int src_index, | |||||
| int dst_index, | |||||
| int count); | |||||
| void CustomData_copy_elements(int type, void *src_data_ofs, void *dst_data_ofs, int count); | void CustomData_copy_elements(int type, void *src_data_ofs, void *dst_data_ofs, int count); | ||||
| void CustomData_bmesh_copy_data(const struct CustomData *source, | void CustomData_bmesh_copy_data(const struct CustomData *source, | ||||
| struct CustomData *dest, | struct CustomData *dest, | ||||
| void *src_block, | void *src_block, | ||||
| void **dest_block); | void **dest_block); | ||||
| void CustomData_bmesh_copy_data_exclude_by_type(const struct CustomData *source, | void CustomData_bmesh_copy_data_exclude_by_type(const struct CustomData *source, | ||||
| struct CustomData *dest, | struct CustomData *dest, | ||||
| void *src_block, | void *src_block, | ||||
| ▲ Show 20 Lines • Show All 322 Lines • Show Last 20 Lines | |||||