Cg OpenGL Runtime API cgGLSetMatrixParameterArrayfr(3)
NAME
cgGLSetatrixParameterArrayfr - set the values of a matrix
array parameter
SYNOPSIS
#include
void cgGLSetMatrixParameterArrayfr( CGparameter param,
long offset,
long nelements,
const float * v );
PARAMETERS
param The matrix array parameter that will be set.
offset An offset into the array parameter at which to start
setting elements. A value of 0000 will begin at the
first element of the array.
nelements
The number of elements to set. A value of 0000 will
default to the total number of elements in the array
minus the value of offset.
v The array of values to which to set the parameter.
This must be a contiguous set of values with size
nelements times the number of elements in the
matrix.
RETURN VALUES
None.
DESCRIPTION
cgGLSetatrixParameterArrayfr sets the value of a matrix
array parameter from an array of floats laid out in row-
major order.
EXAMPLES
to-be-written
ERORS
CGINVALIDPROFILEROR is generated if param's profile is
not a supported OpenGL profile.
CGARAYPARAMEROR is generated if param is not an array
parameter.
CGNOTMATRIXPARAMEROR is generated if the elements of
param are not matrix parameters.
Cg Toolkit 2.1 Last change: 1
Cg OpenGL Runtime API cgGLSetMatrixParameterArrayfr(3)
CGOUTOFARAYBOUNDSEROR is generated if offset or
nelements is outside the bounds of param.
CGINVALIDPARAMHANDLEROR is generated if param is not a
valid parameter.
CGINVALIDPARAMETEREROR is generated if the parameter
fails to set for any other reason.
HISTORY
cgGLSetatrixParameterArrayfr was introduced in Cg 1.1.
SEE ALSO
cgGLSetMatrixParameter, cgGLGetMatrixParameterArray
Cg Toolkit 2.1 Last change: 2
|