~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/blenlib/BLI_memarena.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* 
2
 
 * Memory arena ADT
3
 
 * 
4
 
 * $Id: BLI_memarena.h 28202 2010-04-15 10:28:32Z blendix $
5
2
 *
6
3
 * ***** BEGIN GPL LICENSE BLOCK *****
7
4
 *
27
24
 * Contributor(s): none yet.
28
25
 *
29
26
 * ***** END GPL LICENSE BLOCK *****
30
 
 * 
 
27
 */ 
 
28
 
 
29
/** \file BLI_memarena.h
 
30
 *  \ingroup bli
 
31
 *  \brief Memory arena ADT.
 
32
 *  \section aboutmemarena Memory Arena
31
33
 * Memory arena's are commonly used when the program
32
34
 * needs to quickly allocate lots of little bits of
33
35
 * data, which are all freed at the same moment.
34
 
 * 
35
36
 */
36
37
 
37
 
#ifndef BLI_MEMARENA_H
38
 
#define BLI_MEMARENA_H
 
38
#ifndef __BLI_MEMARENA_H__
 
39
#define __BLI_MEMARENA_H__
39
40
 
40
41
#ifdef __cplusplus
41
42
extern "C" {