Searched refs:faces_prev (Results 1 – 2 of 2) sorted by relevance
/dports/graphics/blender/blender-2.91.0/source/blender/bmesh/tools/ |
H A D | bmesh_path_uv.c | 282 BMFace **faces_prev, in facetag_add_adjacent_uv() argument 317 faces_prev[f_b_index] = f_a; in facetag_add_adjacent_uv() 350 faces_prev[f_b_index] = f_a; in facetag_add_adjacent_uv() 374 BMFace **faces_prev; in BM_mesh_calc_path_uv_face() local 395 faces_prev = MEM_callocN(sizeof(*faces_prev) * totface, __func__); in BM_mesh_calc_path_uv_face() 416 facetag_add_adjacent_uv(heap, f, faces_prev, cost, f_endpoints, aspect_v2, params); in BM_mesh_calc_path_uv_face() 423 } while ((f = faces_prev[BM_elem_index_get(f)])); in BM_mesh_calc_path_uv_face() 426 MEM_freeN(faces_prev); in BM_mesh_calc_path_uv_face()
|
H A D | bmesh_path.c | 441 BMFace **faces_prev, in facetag_add_adjacent() argument 469 faces_prev[f_b_index] = f_a; in facetag_add_adjacent() 497 faces_prev[f_b_index] = f_a; in facetag_add_adjacent() 520 BMFace **faces_prev; in BM_mesh_calc_path_face() local 537 faces_prev = MEM_callocN(sizeof(*faces_prev) * totface, __func__); in BM_mesh_calc_path_face() 567 facetag_add_adjacent(heap, f, faces_prev, cost, f_endpoints, params); in BM_mesh_calc_path_face() 574 } while ((f = faces_prev[BM_elem_index_get(f)])); in BM_mesh_calc_path_face() 577 MEM_freeN(faces_prev); in BM_mesh_calc_path_face()
|