]> git.mxchange.org Git - flightgear.git/blob - Scenery/texload.h
348f45014a1b3e4aa8792d989764d74bc913bc4c
[flightgear.git] / Scenery / 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 #ifdef __cplusplus                                                          
14 extern "C" {                            
15 #endif                                   
16
17
18 #include <GL/glut.h>
19
20 extern GLubyte *read_alpha_texture(char *name, int *width, int *height);
21 extern GLubyte * read_rgb_texture(char *name, int *width, int *height);
22
23
24 #ifdef __cplusplus
25 }
26 #endif
27
28
29 #endif /* _TEXLOAD_H */