OpenGL Volumizer 2.7 Reference Pages


NAME
vzTextureType - Data types for texture data.

HEADER FILE
#include <Volumizer2/VolEnums.h>

CLASS DESCRIPTION
Enumerated type representing the type of texture data (e.g. float, short, byte). This enum is used by the vzParameterVolumeTexture and vzParameterLookupTable classes.
enum vzTextureType {
   VZ_UNSIGNED_BYTE   = GL_UNSIGNED_BYTE,
   VZ_UNSIGNED_SHORT  = GL_UNSIGNED_SHORT,
   VZ_UNSIGNED_INT    = GL_UNSIGNED_INT,
   VZ_FLOAT           = GL_FLOAT,
   VZ_BYTE            = GL_BYTE,
   VZ_SHORT           = GL_SHORT,
   VZ_INT             = GL_INT
 };

SEE ALSO
vzParameterLookupTable, vzParameterVolumeTexture

Back to Index