Home
last modified time | relevance | path

Searched refs:CD_MASK_BMESH (Results 1 – 6 of 6) sorted by relevance

/dports/graphics/blender/blender-2.91.0/source/blender/bmesh/intern/
H A Dbmesh_construct.c598 CustomData_copy(&bm_src->vdata, &bm_dst->vdata, CD_MASK_BMESH.vmask, CD_CALLOC, 0); in BM_mesh_copy_init_customdata()
599 CustomData_copy(&bm_src->edata, &bm_dst->edata, CD_MASK_BMESH.emask, CD_CALLOC, 0); in BM_mesh_copy_init_customdata()
600 CustomData_copy(&bm_src->ldata, &bm_dst->ldata, CD_MASK_BMESH.lmask, CD_CALLOC, 0); in BM_mesh_copy_init_customdata()
601 CustomData_copy(&bm_src->pdata, &bm_dst->pdata, CD_MASK_BMESH.pmask, CD_CALLOC, 0); in BM_mesh_copy_init_customdata()
H A Dbmesh_mesh_convert.c203 CustomData_MeshMasks mask = CD_MASK_BMESH; in BM_mesh_bm_from_me()
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/
H A DBKE_customdata.h54 extern const CustomData_MeshMasks CD_MASK_BMESH;
/dports/graphics/blender/blender-2.91.0/source/blender/editors/mesh/
H A Deditmesh_tools.c4181 CustomData_copy(&bm_old->vdata, &bm_new->vdata, CD_MASK_BMESH.vmask, CD_CALLOC, 0); in mesh_separate_tagged()
4182 CustomData_copy(&bm_old->edata, &bm_new->edata, CD_MASK_BMESH.emask, CD_CALLOC, 0); in mesh_separate_tagged()
4183 CustomData_copy(&bm_old->ldata, &bm_new->ldata, CD_MASK_BMESH.lmask, CD_CALLOC, 0); in mesh_separate_tagged()
4184 CustomData_copy(&bm_old->pdata, &bm_new->pdata, CD_MASK_BMESH.pmask, CD_CALLOC, 0); in mesh_separate_tagged()
/dports/graphics/blender/blender-2.91.0/source/blender/python/bmesh/
H A Dbmesh_py_types.c1096 const CustomData_MeshMasks data_masks = CD_MASK_BMESH; in bpy_bmesh_from_object()
/dports/graphics/blender/blender-2.91.0/source/blender/blenkernel/intern/
H A Dcustomdata.c1942 const CustomData_MeshMasks CD_MASK_BMESH = { variable