Lines Matching defs:log
254 std::vector<GLchar> log(length);
255 glGetShaderInfoLog(shaders[i], length, NULL, &log[0]);
257 << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
265 std::vector<GLchar> log(length);
266 glGetProgramInfoLog(program, length, NULL, &log[0]);
267 m_context.getTestContext().getLog() << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
8923 GLchar log[1024];
8924 glGetShaderInfoLog(sh, sizeof(log), NULL, log);
8926 << log << tcu::TestLog::EndMessage;
9025 GLchar log[1024];
9026 glGetProgramInfoLog(p, sizeof(log), NULL, log);
9028 << log << tcu::TestLog::EndMessage;