~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/python/bmesh/bmesh_py_api.c

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#include "bmesh_py_ops.h"
44
44
#include "bmesh_py_utils.h"
45
45
 
46
 
#include "BKE_tessmesh.h"
 
46
#include "BKE_editmesh.h"
47
47
 
48
48
#include "DNA_mesh_types.h"
49
49
 
138
138
 
139
139
        {
140
140
                extern void EDBM_update_generic(BMEditMesh *em, const bool do_tessface, const bool is_destructive);
 
141
                BMEditMesh *em = me->edit_btmesh;
 
142
                BMesh *bm = em->bm;
 
143
 
 
144
                /* python won't ensure matching uv/mtex */
 
145
                BM_mesh_cd_validate(bm);
 
146
 
141
147
                EDBM_update_generic(me->edit_btmesh, do_tessface, is_destructive);
142
148
        }
143
149