Fix T38962: Boolean modifier crashes when only right operand has UV layer

This commit is contained in:
Sergey Sharybin 2014-03-05 14:29:02 +06:00
parent 905dda8527
commit 6ddb1faca9
Notes: blender-bot 2023-02-14 11:04:57 +01:00
Referenced by issue #38962, Boolean modifier - intersection fails for Suzanne and a cuboid
1 changed files with 5 additions and 0 deletions

View File

@ -351,6 +351,11 @@ static void exporter_InitGeomArrays(ExportMeshData *export_data,
allocate_custom_layers(&dm->loopData, CD_MLOOPUV, num_loops,
CustomData_number_of_layers(&dm_left->loopData, CD_MLOOPUV));
allocate_custom_layers(&dm->loopData, CD_MLOOPCOL, num_loops,
CustomData_number_of_layers(&dm_right->loopData, CD_MLOOPCOL));
allocate_custom_layers(&dm->loopData, CD_MLOOPUV, num_loops,
CustomData_number_of_layers(&dm_right->loopData, CD_MLOOPUV));
/* Merge custom data layers from operands.
*
* Will only create custom data layers for all the layers which appears in