/*
 * STRUCT: SE_IMAGE_MIP_FIELDS
 *
 *   A description of the number of texels in a single MIP level of an
 *   <Image>.  An array of these (an array of SE_IMAGE_MIP_FIELDS) is
 *   used to define the number of texels at each MIP level of an <Image>.
 */
typedef struct
{
SE_PINT32 size_horizontal; (notes)
SE_PINT32 size_vertical; (notes)
SE_PINT32 size_z; (notes)
} SE_IMAGE_MIP_FIELDS;


Field Notes

size_horizontal

 Horizontal number of texels in the <Image> for the specified MIP level.

size_vertical

 Vertical number of texels in the <Image> for the specified MIP level.

size_z

 Number of texels in the third dimension in the <Image> for
 the specified MIP level. This value must be at least 1,
 since by definition, a 2-dimensional <Image> has exactly
 one texel in the z dimension.
Prev: SE_IMAGE_MAPPING_METHOD_ENUM. Next: SE_IMAGE_PROJECTION_TYPE_ENUM. Up:Index