From ea11bc980ad428950efb430618a6de439ffd5951 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 21 May 2012 12:30:06 +0000 Subject: [PATCH] debugging check for bmesh (commented since its very slow), but useful for debugging some scripts. --- source/blender/python/bmesh/bmesh_py_types.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/source/blender/python/bmesh/bmesh_py_types.c b/source/blender/python/bmesh/bmesh_py_types.c index 1c0040aec89..be5b4844ae6 100644 --- a/source/blender/python/bmesh/bmesh_py_types.c +++ b/source/blender/python/bmesh/bmesh_py_types.c @@ -3115,6 +3115,21 @@ PyObject *BPy_BMElem_CreatePyObject(BMesh *bm, BMHeader *ele) int bpy_bm_generic_valid_check(BPy_BMGeneric *self) { if (LIKELY(self->bm)) { + + /* far too slow to enable by default but handy + * to uncomment for debugging tricky errors, + * note that this will throw error on entering a + * function where the actual error will be caused by + * the previous action. */ +#if 0 + if (BM_mesh_validate(self->bm) == FALSE) { + PyErr_Format(PyExc_ReferenceError, + "BMesh used by %.200s has become invalid", + Py_TYPE(self)->tp_name); + return -1; + } +#endif + return 0; } else {