Tga.h 1.4 KB

12345678910111213141516171819202122232425
  1. /******************************************************************************
  2. * filename: tga.h *
  3. * *
  4. * author: Christopher Oat *
  5. * ATI Research, Inc. *
  6. * 3D Application Research Group *
  7. * email: coat@ati.com *
  8. * *
  9. * description: routines to load .tga image files. *
  10. * *
  11. * *
  12. ******************************************************************************
  13. $Header:: $
  14. ******************************************************************************
  15. * (C) 2001 ATI Research, Inc. All rights reserved. *
  16. ******************************************************************************/
  17. #ifndef _TGA_H
  18. #define _TGA_H
  19. unsigned int tgaLoad(APAK_HANDLE * pHandle, char *filename, int mipmap,
  20. GLenum format);
  21. #endif