Lines Matching defs:log
105 tcu::TestLog& log = m_context.getTestContext().getLog();
106 bool isOk = tcu::fuzzyCompare(log, "Result", "Image comparison result", referenceFrame, renderedFrame, 0.05f,
115 GLchar log[1024];
116 glGetProgramInfoLog(program, sizeof(log), &length, log);
120 << log << tcu::TestLog::EndMessage;
184 std::vector<GLchar> log(length);
185 glGetProgramInfoLog(program, length, NULL, &log[0]);
186 m_context.getTestContext().getLog() << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
199 GLchar log[1024];
200 glGetProgramInfoLog(program, sizeof(log), &length, log);
204 << log << tcu::TestLog::EndMessage;
3888 // shader info log
3892 std::vector<GLchar> log(length);
3893 glGetShaderInfoLog(shaders[i], length, NULL, &log[0]);
3895 << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;
3900 // program info log
3905 std::vector<GLchar> log(length);
3906 glGetProgramInfoLog(program, length, NULL, &log[0]);
3907 m_context.getTestContext().getLog() << tcu::TestLog::Message << &log[0] << tcu::TestLog::EndMessage;