From 6602f3022545f1bfd86b12390289b9c39df727d7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 6 Sep 2022 17:13:41 +1000 Subject: Cleanup: early exit when the active layer disallows procedural access Once the active layer index is reached, there is no need to keep searching. Return early instead. --- source/blender/blenkernel/intern/attribute.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/intern/attribute.cc b/source/blender/blenkernel/intern/attribute.cc index 8524f340803..b2c1382c423 100644 --- a/source/blender/blenkernel/intern/attribute.cc +++ b/source/blender/blenkernel/intern/attribute.cc @@ -474,8 +474,11 @@ CustomDataLayer *BKE_id_attributes_active_get(ID *id) for (int i = 0; i < customdata->totlayer; i++) { CustomDataLayer *layer = &customdata->layers[i]; if (CD_MASK_PROP_ALL & CD_TYPE_AS_MASK(layer->type)) { - if (index == active_index && BKE_attribute_allow_procedural_access(layer->name)) { - return layer; + if (index == active_index) { + if (BKE_attribute_allow_procedural_access(layer->name)) { + return layer; + } + return nullptr; } index++; } -- cgit v1.2.3