glGetProgramPipelineInfoLog

retrieve the info log string from a program pipeline object

Signature

glGetProgramPipelineInfoLog( GLuint ( pipeline ) , GLsizei ( bufSize ) , GLsizei *( length ) , GLchar *( infoLog ) )-> void
glGetProgramPipelineInfoLog( pipeline , bufSize , length , infoLog )

Parameters

VariablesDescription
pipeline
Specifies the name of a program pipeline object from which to retrieve the info log.
bufSize
Specifies the maximum number of characters, including the null terminator, that may be written into infoLog .
length
Specifies the address of a variable into which will be written the number of characters written into infoLog .
infoLog
Specifies the address of an array of characters into which will be written the info log for pipeline .