]> git.mxchange.org Git - flightgear.git/blob - Scenery/obj.h
Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
[flightgear.git] / Scenery / obj.h
1 /**************************************************************************
2  * obj.h -- routines to handle WaveFront .obj format files.
3  *
4  * Written by Curtis Olson, started October 1997.
5  *
6  * Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  * $Id$
23  * (Log is kept at end of this file)
24  **************************************************************************/
25
26
27 #ifndef _OBJ_H
28 #define _OBJ_H
29
30
31 #ifdef WIN32
32 #  include <windows.h>
33 #endif
34
35 #include <GL/glut.h>
36
37 #include <Include/fg_types.h>
38
39
40 /* Load a .obj file and generate the GL call list */
41 GLint fgObjLoad(char *file, struct fgCartesianPoint *ref);
42
43
44 #endif /* _OBJ_H */
45
46
47 /* $Log$
48 /* Revision 1.5  1998/01/27 00:48:03  curt
49 /* Incorporated Paul Bleisch's <bleisch@chromatic.com> new debug message
50 /* system and commandline/config file processing code.
51 /*
52  * Revision 1.4  1998/01/22 02:59:41  curt
53  * Changed #ifdef FILE_H to #ifdef _FILE_H
54  *
55  * Revision 1.3  1998/01/19 19:27:17  curt
56  * Merged in make system changes from Bob Kuehne <rpk@sgi.com>
57  * This should simplify things tremendously.
58  *
59  * Revision 1.2  1998/01/13 00:23:10  curt
60  * Initial changes to support loading and management of scenery tiles.  Note,
61  * there's still a fair amount of work left to be done.
62  *
63  * Revision 1.1  1997/10/28 21:14:55  curt
64  * Initial revision.
65  *
66  */