~ubuntu-branches/ubuntu/utopic/blender/utopic-proposed

« back to all changes in this revision

Viewing changes to source/blender/bmesh/operators/bmo_split_edges.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-02-19 11:24:23 UTC
  • mfrom: (14.2.23 sid)
  • Revision ID: package-import@ubuntu.com-20140219112423-rkmaz2m7ha06d4tk
Tags: 2.69-3ubuntu1
* Merge with Debian; remaining changes:
  - Configure without OpenImageIO on armhf, as it is not available on
    Ubuntu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include "BLI_utildefines.h"
30
30
 
31
31
#include "bmesh.h"
32
 
#include "tools/bmesh_edgesplit.h"
 
32
#include "bmesh_tools.h"
33
33
 
34
34
#include "intern/bmesh_operators_private.h" /* own include */
35
35
 
48
48
        }
49
49
 
50
50
        /* this is where everything happens */
51
 
        BM_mesh_edgesplit(bm, use_verts, true);
 
51
        BM_mesh_edgesplit(bm, use_verts, true, false);
52
52
 
53
53
        BMO_slot_buffer_from_enabled_hflag(bm, op, op->slots_out, "edges.out", BM_EDGE, BM_ELEM_INTERNAL_TAG);
54
54
}