~diresu/blender/blender-command-port

« back to all changes in this revision

Viewing changes to intern/bmfont/intern/BMF_FontData.h

  • Committer: theeth
  • Date: 2008-10-14 16:52:04 UTC
  • Revision ID: vcs-imports@canonical.com-20081014165204-r32w2gm6s0osvdhn
copy back trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * $Id: BMF_FontData.h 14444 2008-04-16 22:40:48Z hos $
 
3
 * ***** BEGIN GPL LICENSE BLOCK *****
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; either version 2
 
8
 * of the License, or (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software Foundation,
 
17
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
18
 *
 
19
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
 
20
 * All rights reserved.
 
21
 *
 
22
 * The Original Code is: all of this file.
 
23
 *
 
24
 * Contributor(s): none yet.
 
25
 *
 
26
 * ***** END GPL LICENSE BLOCK *****
 
27
 */
 
28
 
 
29
/**
 
30
 
 
31
 * $Id: BMF_FontData.h 14444 2008-04-16 22:40:48Z hos $
 
32
 * Copyright (C) 2001 NaN Technologies B.V.
 
33
 */
 
34
 
 
35
#ifndef __BMF_FONTDATA_H__
 
36
#define __BMF_FONTDATA_H__
 
37
 
 
38
typedef struct {
 
39
        signed char width, height;
 
40
        signed char xorig, yorig;
 
41
        signed char advance;
 
42
        
 
43
        short           data_offset;
 
44
} BMF_CharData;
 
45
 
 
46
typedef struct {
 
47
        int                             xmin, ymin;
 
48
        int                             xmax, ymax;
 
49
 
 
50
        BMF_CharData    chars[256];
 
51
        unsigned char*  bitmap_data;
 
52
} BMF_FontData;
 
53
 
 
54
#endif
 
55