NAME
    cgGLDisableTextureParameter - disables the texture unit associated with
    the given texture parameter

SYNOPSIS
      #include <Cg/cgGL.h>

      void cgGLDisableTextureParameter( CGparameter param );

PARAMETERS
    param   The texture parameter that has a texture object associated with
            it.

RETURN VALUES
    None.

DESCRIPTION
    cgGLDisableTextureParameter unbinds and disables the texture object that
    was associated with the parameter param.

    See the cgGLEnableTextureParameter manpage for more information.

EXAMPLES
    *to-be-written*

ERRORS
    CG_INVALID_PROFILE_ERROR is generated if param's profile is not a
    supported OpenGL profile.

    CG_INVALID_PARAM_HANDLE_ERROR is generated if param is not a valid
    parameter handle.

    CG_INVALID_PARAMETER_ERROR is generated param is not a texture parameter
    or if the parameter fails to set for any other reason.

HISTORY
    cgGLDisableTextureParameter was introduced in Cg 1.1.

SEE ALSO
    the cgGLEnableTextureParameter manpage, the cgGLSetTextureParameter
    manpage

