blob: 8e544f1fb826af1e775122c29acecd81629d6eb9 [file] [log] [blame]
Brian Paul80ef05c2000-02-10 17:44:50 +00001/* readtex.h */
2
3#ifndef READTEX_H
4#define READTEX_H
5
6
7#include <GL/gl.h>
8
9
Brian Paul92009552000-06-27 17:54:44 +000010extern GLboolean
11LoadRGBMipmaps( const char *imageFile, GLint intFormat );
Brian Paul80ef05c2000-02-10 17:44:50 +000012
13
Brian Paul92009552000-06-27 17:54:44 +000014extern GLboolean
15LoadRGBMipmaps2( const char *imageFile, GLenum target,
16 GLint intFormat, GLint *width, GLint *height );
17
18
19extern GLubyte *
20LoadRGBImage( const char *imageFile,
21 GLint *width, GLint *height, GLenum *format );
Brian Paul80ef05c2000-02-10 17:44:50 +000022
23
24#endif