Signature
glTransformFeedbackVaryings(
GLuint(
program
)
,
GLsizei(
count
)
,
const char **(
varyings
)
,
GLenum(
bufferMode
)
)-> void
Parameters
Variables | Description |
---|---|
program |
The name of the target program object.
|
count |
The number of varying variables used for transform feedback.
|
varyings |
An array of
count
zero-terminated strings specifying the
names of the varying variables to use for transform feedback.
|
bufferMode |
Identifies the mode used to capture the varying variables when transform feedback is active.
bufferMode
must be
GL_INTERLEAVED_ATTRIBS
or
GL_SEPARATE_ATTRIBS
.
|