OpenGL Volumizer 2.7 Reference Pages


NAME
vzExternalTextureFormat - External format of texture data.

HEADER FILE
#include <Volumizer2/VolEnums.h>

CLASS DESCRIPTION
Enumerated type representing the external format of texture data. This is the format of the data that is supplied to the API, not the internal format of the data stored in texture memory. Used by the vzParameterVolumeTexture and vzParameterLookupTable classes.
enum vzExternalTextureFormat {
   VZ_RGBA                = GL_RGBA,
   VZ_RGB                 = GL_RGB, 
   VZ_LUMINANCE_ALPHA     = GL_LUMINANCE_ALPHA,
   VZ_LUMINANCE           = GL_LUMINANCE
};

Back to Index