Mesh: Replace auto smooth with node group #108014

Merged
Hans Goudey merged 149 commits from HooglyBoogly/blender:refactor-mesh-corner-normals-lazy into main 2023-10-20 16:54:20 +02:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 772c14d115 - Show all commits

View File

@ -146,7 +146,7 @@ enum class BoolArrayMix {
AllTrue,
Mixed,
};
BoolArrayMix bool_array_mix_calc(const VArray<bool> &varray, const IndexRange range_to_check);
BoolArrayMix bool_array_mix_calc(const VArray<bool> &varray, IndexRange range_to_check);
inline BoolArrayMix bool_array_mix_calc(const VArray<bool> &varray)
{
return bool_array_mix_calc(varray, varray.index_range());