TexFace removal part 3

- MTexPoly structure & layer type.
- The 'Mesh.uv_textures' layers.
- DerivedMesh TexFace drawing.
- Scripts & UI.
This commit is contained in:
2017-05-25 15:11:00 +10:00
parent c7c6070a64
commit bdbf4471a6
69 changed files with 285 additions and 771 deletions

View File

@@ -156,11 +156,6 @@ static PyObject *bpy_bm_update_edit_mesh(PyObject *UNUSED(self), PyObject *args,
{
extern void EDBM_update_generic(BMEditMesh *em, const bool do_tessface, const bool is_destructive);
BMEditMesh *em = me->edit_btmesh;
BMesh *bm = em->bm;
/* python won't ensure matching uv/mtex */
BM_mesh_cd_validate(bm);
EDBM_update_generic(me->edit_btmesh, do_tessface, is_destructive);
}