Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

readtex.h 416B

123456789101112131415161718192021222324
  1. /* readtex.h */
  2. #ifndef READTEX_H
  3. #define READTEX_H
  4. #include <GL/gl.h>
  5. extern GLboolean
  6. LoadRGBMipmaps( const char *imageFile, GLint intFormat );
  7. extern GLboolean
  8. LoadRGBMipmaps2( const char *imageFile, GLenum target,
  9. GLint intFormat, GLint *width, GLint *height );
  10. extern GLubyte *
  11. LoadRGBImage( const char *imageFile,
  12. GLint *width, GLint *height, GLenum *format );
  13. #endif