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 502B

1234567891011121314151617181920212223242526
  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. extern GLushort *
  14. LoadYUVImage( const char *imageFile, GLint *width, GLint *height );
  15. #endif