Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_editmesh_tangent.h
| /* SPDX-License-Identifier: GPL-2.0-or-later */ | /* SPDX-License-Identifier: GPL-2.0-or-later */ | ||||
| #pragma once | #pragma once | ||||
| /** \file | /** \file | ||||
| * \ingroup bke | * \ingroup bke | ||||
| */ | */ | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| #include "DNA_customdata_types.h" | |||||
| /** | /** | ||||
| * \see #BKE_mesh_calc_loop_tangent, same logic but used arrays instead of #BMesh data. | * \see #BKE_mesh_calc_loop_tangent, same logic but used arrays instead of #BMesh data. | ||||
| * | * | ||||
| * \note This function is not so normal, its using #BMesh.ldata as input, | * \note This function is not so normal, its using #BMesh.ldata as input, | ||||
| * but output's to #Mesh.ldata. | * but output's to #Mesh.ldata. | ||||
| * This is done because #CD_TANGENT is cache data used only for drawing. | * This is done because #CD_TANGENT is cache data used only for drawing. | ||||
| */ | */ | ||||
| void BKE_editmesh_loop_tangent_calc(BMEditMesh *em, | void BKE_editmesh_loop_tangent_calc(BMEditMesh *em, | ||||
| bool calc_active_tangent, | bool calc_active_tangent, | ||||
| const char (*tangent_names)[MAX_NAME], | const char (*tangent_names)[MAX_CUSTOMDATA_LAYER_NAME], | ||||
chrisbblend: Just use `const char (*tangent_names)[MAX_CUSTOMDATA_LAYER_NAME],`
| |||||
Done Inline ActionsI mirrored the construction like it was before. I thought maybe there's a reason we don't want to include the corresponding header here? I'll check what happens if I add that header. Baardaap: I mirrored the construction like it was before. I thought maybe there's a reason we don't want… | |||||
| int tangent_names_len, | int tangent_names_len, | ||||
| const float (*poly_normals)[3], | const float (*poly_normals)[3], | ||||
| const float (*loop_normals)[3], | const float (*loop_normals)[3], | ||||
| const float (*vert_orco)[3], | const float (*vert_orco)[3], | ||||
| CustomData *dm_loopdata_out, | CustomData *dm_loopdata_out, | ||||
| uint dm_loopdata_out_len, | uint dm_loopdata_out_len, | ||||
| short *tangent_mask_curr_p); | short *tangent_mask_curr_p); | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||
Just use const char (*tangent_names)[MAX_CUSTOMDATA_LAYER_NAME],