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 e05fe7debc - Show all commits

View File

@ -466,7 +466,7 @@ static void mesh_calc_modifier_final_normals(const bool sculpt_dyntopo, Mesh *me
}
else {
if (sculpt_dyntopo == false) {
/* Eager normal calculation can potentially be faster than deferring the to drawing code. */
/* Eager normal calculation can potentially be faster than deferring to drawing code. */
HooglyBoogly marked this conversation as resolved Outdated

missing word after the

missing word after `the`
if (domain == ATTR_DOMAIN_FACE) {
mesh_final->face_normals();
}