Home | History | Annotate | Download | only in main

Lines Matching full:maxlength

138  * Copy string from <src> to <dst>, up to maxLength characters, returning
141 * \param maxLength max chars to copy
146 _mesa_copy_string(GLchar *dst, GLsizei maxLength,
150 for (len = 0; len < maxLength - 1 && src && src[len]; len++)
152 if (maxLength > 0)
675 get_shader_source(struct gl_context *ctx, GLuint shader, GLsizei maxLength,
683 _mesa_copy_string(sourceOut, maxLength, length, sh->Source);
1152 _mesa_GetInfoLogARB(GLhandleARB object, GLsizei maxLength, GLsizei * length,
1157 get_program_info_log(ctx, object, maxLength, length, infoLog);
1160 get_shader_info_log(ctx, object, maxLength, length, infoLog);
1240 _mesa_GetShaderSourceARB(GLhandleARB shader, GLsizei maxLength,
1244 get_shader_source(ctx, shader, maxLength, length, sourceOut);