Found another bmesh func that invalidates loop indices...

This commit is contained in:
Bastien Montagne 2014-05-28 18:34:26 +02:00
parent 4d1ec4d9c7
commit 9913da2b7f
1 changed files with 3 additions and 0 deletions

View File

@ -937,6 +937,9 @@ static bool bm_loop_reverse_loop(BMesh *bm, BMFace *f
BM_CHECK_ELEMENT(f);
/* Loop indices are no more valid! */
bm->elem_index_dirty |= BM_LOOP;
return true;
}