Lines Matching defs:length
309 deInt32 length = 0;
312 gl.getShaderiv(shader, GL_INFO_LOG_LENGTH, &length);
315 infoLog.resize(length, '\0');
317 gl.getShaderInfoLog(shader, (glw::GLsizei)infoLog.length(), DE_NULL, &(infoLog[0]));
335 deInt32 length = 0;
338 gl.getProgramiv(program, GL_INFO_LOG_LENGTH, &length);
341 infoLog.resize(length, '\0');
343 gl.getProgramInfoLog(program, (glw::GLsizei)infoLog.length(), DE_NULL, &(infoLog[0]));
510 deInt32 length = 0;
516 gl.getActiveAttrib(program, activeAttribNdx, maxNameSize, &length, &size, &type, name);
523 << ", length=" << length