DevIL Documentation Previous | IL | Next

 

ilGenImages

 

ilGenImages stores Num image names in Images. The names stored are not necessarily contiguous, and names can have been deleted via ilDeleteImages beforehand. The image names stored in Images can be used with ilBindImage after calling ilGenImages. After calling ilGenImages, all image dimensions and features are undefined.

 

ILvoid ilGenImages(
  ILsizei Num, ILuint * Images );


Parameters

 
Num
Number of image names to generate.
Images
Pointer in which the generated image names are stored.


Errors

 
IL_INVALID_VALUE
Num was less than 1 or Images was NULL.

See Also

 
ilBindImage, ilDeleteImages,