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

« back to all changes in this revision

Viewing changes to source/blender/bmesh/bmesh_class.h

  • 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:
39
39
struct BMFace;
40
40
 
41
41
struct BLI_mempool;
42
 
struct Object;
43
42
 
44
43
/* note: it is very important for BMHeader to start with two
45
44
 * pointers. this is a requirement of mempool's method of
252
251
                                     * not have functions clobber them */
253
252
};
254
253
 
 
254
struct BPy_BMGeneric;
 
255
extern void bpy_bm_generic_invalidate(struct BPy_BMGeneric *self);
 
256
 
255
257
/* defines */
256
258
#define BM_ELEM_CD_GET_VOID_P(ele, offset) \
257
259
        (assert(offset != -1), (void *)((char *)(ele)->head.data + (offset)))
288
290
 * but should not error on valid cases */
289
291
#define BM_LOOP_RADIAL_MAX 10000
290
292
#define BM_NGON_MAX 100000
291
 
#define BM_OMP_LIMIT 10000  /* setting zero so we can catch bugs in OpenMP/BMesh */
 
293
#define BM_OMP_LIMIT 10000 /* 10000 */  /* setting zero so we can catch bugs in OpenMP/BMesh */
292
294
 
293
295
#endif /* __BMESH_CLASS_H__ */