Lines Matching defs:log
687 void build (TestLog& log);
741 void Program::build (TestLog& log)
752 log << TestLog::ShaderProgram(linkOk, attemptLink ? getProgramInfoLog(m_programGL) : string(""))
1189 TestLog& log = m_testCtx.getLog();
1191 log << TestLog::Message << "Number of iterations: " << (m_numIterations > 0 ? toString(m_numIterations) : "infinite") << TestLog::EndMessage
1224 log << TestLog::Section("ShaderProgram" + toString(progCtxNdx), "Shader program " + toString(progCtxNdx)) << prog << TestLog::EndSection;
1257 TestLog& log = m_testCtx.getLog();
1291 prog.build(log);
1483 // Log if a certain amount of time has passed since last log entry (or if this is the last iteration).
1492 log << TestLog::Section("LogEntry" + toString(m_currentLogEntryNdx), "Log entry " + toString(m_currentLogEntryNdx))
1495 << TestLog::Message << "Time since last log entry: " << timeDiff << "s" << TestLog::EndMessage
1496 << TestLog::Message << "Frames since last log entry: " << iterDiff << TestLog::EndMessage
1497 << TestLog::Message << "Average frame time since last log entry: " << de::floatToString((float)timeDiff / (float)iterDiff, 2) << "s" << TestLog::EndMessage