File: readtex.h

package info (click to toggle)
gtkglext 1.2.0-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,268 kB
  • sloc: ansic: 52,735; sh: 8,871; xml: 2,810; makefile: 687; perl: 637
file content (24 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* readtex.h */

#ifndef READTEX_H
#define READTEX_H


#include <GL/gl.h>


extern GLboolean
LoadRGBMipmaps( const char *imageFile, GLint intFormat );


extern GLboolean
LoadRGBMipmaps2( const char *imageFile, GLenum target,
                 GLint intFormat, GLint *width, GLint *height );


extern GLubyte *
LoadRGBImage( const char *imageFile,
              GLint *width, GLint *height, GLenum *format );


#endif