Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_mesh_legacy_convert.h
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| struct MVert *BKE_mesh_legacy_convert_positions_to_verts( | struct MVert *BKE_mesh_legacy_convert_positions_to_verts( | ||||
| Mesh *mesh, | Mesh *mesh, | ||||
| blender::ResourceScope &temp_arrays_for_convert, | blender::ResourceScope &temp_arrays_for_convert, | ||||
| blender::Vector<CustomDataLayer, 16> &vert_layers_to_write); | blender::Vector<CustomDataLayer, 16> &vert_layers_to_write); | ||||
| void BKE_mesh_legacy_convert_verts_to_positions(Mesh *mesh); | void BKE_mesh_legacy_convert_verts_to_positions(Mesh *mesh); | ||||
| struct MLoop *BKE_mesh_legacy_convert_corners_to_loops( | |||||
| Mesh *mesh, | |||||
| blender::ResourceScope &temp_arrays_for_convert, | |||||
| blender::Vector<CustomDataLayer, 16> &loop_layers_to_write); | |||||
| #endif | #endif | ||||
| void BKE_mesh_legacy_convert_loops_to_corners(struct Mesh *mesh); | |||||
| /** | /** | ||||
| * Recreate #MFace Tessellation. | * Recreate #MFace Tessellation. | ||||
| * | * | ||||
| * \note This doesn't use multi-threading like #BKE_mesh_recalc_looptri since | * \note This doesn't use multi-threading like #BKE_mesh_recalc_looptri since | ||||
| * it's not used in many places and #MFace should be phased out. | * it's not used in many places and #MFace should be phased out. | ||||
| */ | */ | ||||
| void BKE_mesh_tessface_calc(struct Mesh *mesh); | void BKE_mesh_tessface_calc(struct Mesh *mesh); | ||||
| ▲ Show 20 Lines • Show All 51 Lines • Show Last 20 Lines | |||||