NAME
    cgGetBoolStateAssignmentValues - get a bool-valued state assignment's
    values

SYNOPSIS
      #include <Cg/cg.h>

      const CGbool *cgGetBoolStateAssignmentValues(CGstateassignment sa,
                                                   int *nvalues);

PARAMETERS
    sa      Specifies the state assignment.

    nvalues Pointer to integer where the number of values returned will be
            stored.

DESCRIPTION
    cgGetBoolStateAssignmentValues allows the application to retrieve the
    value(s) of a boolean typed state assignment.

RETURN VALUES
    Returns a pointer to an array of CGbool values. The number of values in
    the array is returned via the nvalues parameter.

    If no values are available, NULL will be returned and nvalues will be 0.

ERRORS
    CG_INVALID_STATE_ASSIGNMENT_HANDLE_ERROR is generated if the handle sa
    is invalid.

    CG_INVALID_PARAMETER_ERROR is generated if nvalues is NULL.

    CG_INVALID_PARAMETER_TYPE_ERROR is generated if the state assignment is
    not bool-typed.

SEE ALSO
    the cgGetStateAssignmentState manpage, the cgGetStateType manpage, the
    cgGetFloatStateAssignmentValues manpage, the
    cgGetIntStateAssignmentValues manpage, the
    cgGetStringStateAssignmentValue manpage, the
    cgGetProgramStateAssignmentValue manpage, the
    cgGetSamplerStateAssignmentValue manpage, and the
    cgGetTextureStateAssignmentValue manpage

