Lines Matching defs:log
85 GLchar log[1024];
86 glGetProgramInfoLog(program, sizeof(log), &length, log);
90 << log << tcu::TestLog::EndMessage;
2623 // shader info log
2627 std::vector<GLchar> log(length);
2628 glGetShaderInfoLog(shaders[i], length, NULL, &log[0]);
2630 << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
2635 // program info log
2640 std::vector<GLchar> log(length);
2641 glGetProgramInfoLog(program, length, NULL, &log[0]);
2642 m_context.getTestContext().getLog() << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
3648 GLchar log[1024];
3649 glGetProgramInfoLog(program, sizeof(log), &length, log);
3653 << log << tcu::TestLog::EndMessage;
4666 // shader info log
4670 std::vector<GLchar> log(length);
4671 glGetShaderInfoLog(shaders[i], length, NULL, &log[0]);
4673 << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
4678 // program info log
4683 std::vector<GLchar> log(length);
4684 glGetProgramInfoLog(program, length, NULL, &log[0]);
4685 m_context.getTestContext().getLog() << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;