]> git.mxchange.org Git - flightgear.git/blob - src/Objects/texload.h
Revert to pre-wind-sticking ground reaction forces until they can be debugged.
[flightgear.git] / src / Objects / texload.h
1
2 /* Copyright (c) Mark J. Kilgard, 1997.  */
3
4 /* This program is freely distributable without licensing fees 
5    and is provided without guarantee or warrantee expressed or 
6    implied. This program is -not- in the public domain. */
7
8
9 #ifndef _TEXLOAD_H
10 #define _TEXLOAD_H
11
12
13 #include <GL/glut.h>
14
15
16 #ifdef __cplusplus                                                          
17 extern "C" {                            
18 #endif                                   
19
20
21 extern GLubyte *read_alpha_texture(const char *name, int *width, int *height);
22 extern GLubyte *read_rgb_texture(const char *name, int *width, int *height);
23 extern GLubyte *read_raw_texture(const char *name, int *width, int *height);
24 extern GLubyte *read_r8_texture(const char *name, int *width, int *height);
25
26
27 #ifdef __cplusplus
28 }
29 #endif
30
31
32 #endif /* _TEXLOAD_H */