~ubuntu-branches/ubuntu/intrepid/blender/intrepid-updates

« back to all changes in this revision

Viewing changes to extern/bullet/Demos/OpenGL/BMF_Settings.h

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-08-08 02:45:40 UTC
  • mfrom: (12.1.14 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080808024540-kkjp7ekfivzhuw3l
Tags: 2.46+dfsg-4
* Fix python syntax warning in import_dxf.py, which led to nasty output
  in installation/upgrade logs during byte-compilation, using a patch
  provided by the script author (Closes: #492280):
   - debian/patches/45_fix_python_syntax_warning

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or
5
 
 * modify it under the terms of the GNU General Public License
6
 
 * as published by the Free Software Foundation; either version 2
7
 
 * of the License, or (at your option) any later version. The Blender
8
 
 * Foundation also sells licenses for use in proprietary software under
9
 
 * the Blender License.  See http://www.blender.org/BL/ for information
10
 
 * about this.
11
 
 *
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
 * GNU General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program; if not, write to the Free Software Foundation,
19
 
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
 
 *
21
 
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
22
 
 * All rights reserved.
23
 
 *
24
 
 * The Original Code is: all of this file.
25
 
 *
26
 
 * Contributor(s): none yet.
27
 
 *
28
 
 * ***** END GPL/BL DUAL LICENSE BLOCK *****
29
 
 */
30
 
 
31
 
/**
32
 
 
33
 
  * Copyright (C) 2001 NaN Technologies B.V.
34
 
 * Allows you to determine which fonts to include in the library.
35
 
 */
36
 
 
37
 
#ifndef __BMF_SETTINGS_H
38
 
#define __BMF_SETTINGS_H
39
 
 
40
 
 
41
 
#define BMF_INCLUDE_HELV12      0
42
 
#define BMF_INCLUDE_HELVB8      0
43
 
#define BMF_INCLUDE_HELVB10     0
44
 
#define BMF_INCLUDE_HELVB12     0
45
 
#define BMF_INCLUDE_HELVB14     0
46
 
#define BMF_INCLUDE_SCR12       0
47
 
#define BMF_INCLUDE_SCR14       0
48
 
#define BMF_INCLUDE_SCR15       0
49
 
#define BMF_INCLUDE_HELV10      1
50
 
 
51
 
#endif /* __BMF_SETTINGS_H */
52