~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/bad_level_call_stubs/stubs.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
/**
3
 
 * $Id: stubs.c,v 1.69 2007/01/24 01:34:05 nicholasbishop Exp $
 
3
 * $Id: stubs.c,v 1.71 2007/04/04 13:18:27 campbellbarton Exp $
4
4
 *
5
5
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
6
6
 *
142
142
void load_editMesh(void){}
143
143
void make_editMesh(void){}
144
144
void free_editMesh(struct EditMesh *em){}
145
 
void docentre_new(void){}
 
145
void docenter_new(void){}
146
146
int saveover(char *str){ return 0;}
147
147
 
148
148
/* image.c */
294
294
 /* Multires/sculpt stubs */
295
295
struct MultiresLevel *multires_level_n(struct Multires *mr, int n) {return NULL;}
296
296
void multires_free(struct Multires *mr) {}
297
 
void multires_set_level(void *ob, void *me_v) {}
298
 
void multires_update_levels(struct Mesh *me) {}
 
297
void multires_set_level(struct Object *ob, struct Mesh *me, const int render) {}
 
298
void multires_update_levels(struct Mesh *me, const int render) {}
299
299
void multires_calc_level_maps(struct MultiresLevel *lvl) {}
300
300
struct Multires *multires_copy(struct Multires *orig) {return NULL;}
301
301
void sculptmode_init(struct Scene *sce) {}