Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_operators.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_operators.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operators.c b/source/blender/bmesh/intern/bmesh_operators.c
index 699e6f96e22..04b8a81ad49 100644
--- a/source/blender/bmesh/intern/bmesh_operators.c
+++ b/source/blender/bmesh/intern/bmesh_operators.c
@@ -895,7 +895,7 @@ void *BMO_FirstElem(BMOperator *op, const char *slotname)
}
void *BMO_IterNew(BMOIter *iter, BMesh *UNUSED(bm), BMOperator *op,
- const char *slotname, int restrict)
+ const char *slotname, int restrictmask)
{
BMOpSlot *slot = BMO_GetSlot(op, slotname);
@@ -903,7 +903,7 @@ void *BMO_IterNew(BMOIter *iter, BMesh *UNUSED(bm), BMOperator *op,
iter->slot = slot;
iter->cur = 0;
- iter->restrict = restrict;
+ iter->restrictmask = restrictmask;
if (iter->slot->slottype == BMOP_OPSLOT_MAPPING) {
if (iter->slot->data.ghash)
@@ -922,7 +922,7 @@ void *BMO_IterStep(BMOIter *iter)
if (iter->cur >= iter->slot->len) return NULL;
h = ((void**)iter->slot->data.buf)[iter->cur++];
- while (!(iter->restrict & h->type)) {
+ while (!(iter->restrictmask & h->type)) {
if (iter->cur >= iter->slot->len) return NULL;
h = ((void**)iter->slot->data.buf)[iter->cur++];
}