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