Home | History | Annotate | Download | only in tests

Lines Matching refs:bufLength

267                 GLint bufLength = 0;
268 glGetProgramiv(program, GL_INFO_LOG_LENGTH, &bufLength);
269 if (bufLength) {
270 char* buf = (char*) malloc(bufLength);
272 glGetProgramInfoLog(program, bufLength, NULL, buf);