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

« back to all changes in this revision

Viewing changes to source/blender/imbuf/intern/imbuf_patch.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * rest of the blender code. Most of these are dirty and should not
6
6
 * really exist.
7
7
 *
8
 
 * $Id: imbuf_patch.h,v 1.5 2002/12/27 13:10:17 mein Exp $ *
 
8
 * $Id: imbuf_patch.h,v 1.6 2005/01/03 19:53:04 sirdude Exp $ *
9
9
 *
10
10
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
11
11
 *
62
62
/* These defines loop back to the internal Blender memory management
63
63
 * system, implemented in blenlib. */
64
64
#define NEW(x) (x*)MEM_mallocN(sizeof(x),# x) 
65
 
#define mallocstruct(x,y) (x*)malloc((y)* sizeof(x))   
 
65
#define mallocstruct(x,y) (x*)malloc((y)* sizeof(x))
66
66
#define callocstruct(x,y) (x*)calloc((y), sizeof(x))
67
67
 
68
68
/* These vars are used thoughout the image buffer for conversions. */