summaryrefslogtreecommitdiff
path: root/progs/util
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-02-10 17:44:50 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-02-10 17:44:50 +0000
commit80ef05c9d592b9e566743a3a38dd8903808baa78 (patch)
tree882308992a8e4f8d8ef006827c3eb9c688367b7e /progs/util
parent3d41d5ade74fd6a742139544a8a9ed54b0f5ba83 (diff)
initial checkin
Diffstat (limited to 'progs/util')
-rw-r--r--progs/util/readtex.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/progs/util/readtex.h b/progs/util/readtex.h
new file mode 100644
index 0000000000..2156383ec2
--- /dev/null
+++ b/progs/util/readtex.h
@@ -0,0 +1,17 @@
+/* readtex.h */
+
+#ifndef READTEX_H
+#define READTEX_H
+
+
+#include <GL/gl.h>
+
+
+extern GLboolean LoadRGBMipmaps( const char *imageFile, GLint intFormat );
+
+
+extern GLubyte *LoadRGBImage( const char *imageFile,
+ GLint *width, GLint *height, GLenum *format );
+
+
+#endif