texture.h
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:0k
源码类别:

GIS编程

开发平台:

Visual C++

  1. /*
  2.  * read_texture() - read in an image file in SGI 'libimage' format
  3.  *  currently its very simple minded and converts all images
  4.  *      to RGBA8 regardless of the input format and returns the
  5.  * original number of components in the appropriate parameter.
  6.  *    
  7.  *     
  8.  * the components are converted as follows
  9.  * L    -> LLL 1.0
  10.  * LA   -> LLL A
  11.  * RGB  -> RGB 1.0
  12.  * RGBA -> RGB A
  13.  *
  14.  */
  15. unsigned *
  16. read_texture(const char *name, int *width, int *height, int *components);