Clone of mesa.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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