Lines Matching defs:log
177 std::vector<GLchar> log(length);
178 glGetShaderInfoLog(shaders[i], length, NULL, &log[0]);
180 << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
189 std::vector<GLchar> log(length);
190 glGetProgramInfoLog(program, length, NULL, &log[0]);
191 m_context.getTestContext().getLog() << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
6442 GLchar log[1024];
6443 glGetShaderInfoLog(sh, sizeof(log), NULL, log);
6445 << log << tcu::TestLog::EndMessage;
6543 GLchar log[1024];
6544 glGetProgramInfoLog(p, sizeof(log), NULL, log);
6546 << log << tcu::TestLog::EndMessage;