From 522b73a63519903f57b65f57d94006f50bcab1ae Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 1 Mar 2012 17:38:04 +0000 Subject: bmesh api: * name bmesh operator func's BMO_slot_buffer_* rather then BMO_slot_* since it wasnt obvious some only dealt with buffer, some both. * more typechecks and asserts of BMO_ functions (I lost some time calling a map with a buffer function that failed silently). * small speedup for extrude check - test if the edge is wire _before_ doign a hash lookup. --- source/blender/bmesh/operators/bmo_dissolve.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/bmesh/operators/bmo_dissolve.c') diff --git a/source/blender/bmesh/operators/bmo_dissolve.c b/source/blender/bmesh/operators/bmo_dissolve.c index 94a6c43e838..2d8f99475d6 100644 --- a/source/blender/bmesh/operators/bmo_dissolve.c +++ b/source/blender/bmesh/operators/bmo_dissolve.c @@ -176,7 +176,7 @@ void bmo_dissolve_faces_exec(BMesh *bm, BMOperator *op) if (BMO_error_occurred(bm)) goto cleanup; - BMO_slot_from_flag(bm, op, "regionout", FACE_NEW, BM_FACE); + BMO_slot_buffer_from_flag(bm, op, "regionout", FACE_NEW, BM_FACE); cleanup: /* free/cleanu */ -- cgit v1.2.3