]> icculus.org git repositories - taylor/freespace2.git/blob - include/fonttool.h
re-add PXO sources to project files
[taylor/freespace2.git] / include / fonttool.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/Fonttool/FontTool.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Include file for font creating/kerning tools
16  *
17  * $Log$
18  * Revision 1.3  2003/01/30 20:03:48  relnev
19  * various files ported needed for fonttool.  There is a bug where on exit it segfaults in SDL_GL_SwapBuffers, I'm probably missing something (don't know what) but it works fine otherwise (Taylor Richards)
20  *
21  * Revision 1.2  2002/06/09 04:41:13  relnev
22  * added copyright header
23  *
24  * Revision 1.1.1.1  2002/05/03 03:28:11  root
25  * Initial import.
26  *
27  * 
28  * 2     10/24/98 5:15p Dave
29  * 
30  * 1     10/24/98 4:58p Dave
31  * 
32  * 2     6/05/97 4:53p John
33  * First rev of new antialiased font stuff.
34  * 
35  * 1     6/02/97 4:04p John
36  *
37  * $NoKeywords: $
38  */
39
40 #ifndef _FONTTOOL_H
41 #define _FONTTOOL_H
42
43 #include "2d.h"
44 #include "font.h"
45
46 void fonttool_edit_kerning(char *fname1);
47 void fonttool_kerning_copy( char *fname1, char *fname2 );
48 void fonttool_create_font(char *pcx_filename, char *font_filename);
49
50 void fonttool_read( char *fname2, font *fnt2 );
51 void fonttool_copy_kern( font *fnt1, font *fnt2 );
52 void fonttool_dump( char *fname1, font *fnt1 );
53 void fonttool_remove_kerning( font *fnt );
54 void fonttool_resync_kerning(font *fnt);
55
56
57 #endif
58