Fix assert in mesh batch conversion

This commit is contained in:
Campbell Barton 2018-01-17 19:54:13 +11:00
parent dfea9f43db
commit 2094bbd033
Notes: blender-bot 2023-02-14 08:29:54 +01:00
Referenced by issue #53807, Crash when hiding face (h)
1 changed files with 1 additions and 2 deletions

View File

@ -2167,11 +2167,10 @@ static Gwn_VertBuf *mesh_batch_cache_get_facedot_pos_with_normals_and_flag(
}
}
const int vbo_len_used = vidx;
BLI_assert(vbo_len_used <= vbo_len_capacity);
if (vbo_len_used != vbo_len_capacity) {
GWN_vertbuf_data_resize(vbo, vbo_len_used);
}
BLI_assert(vbo_len_capacity == vbo_len_used);
UNUSED_VARS_NDEBUG(vbo_len_used);
}
return cache->ed_fcenter_pos_with_nor_and_sel;