Home | History | Annotate | Download | only in glshared

Lines Matching refs:TestLog

37 using tcu::TestLog;
395 void logCalibrationInfo (tcu::TestLog& log, const TheilSenCalibrator& calibrator)
402 log << TestLog::Section("CalibrationInfo", "Calibration Info")
403 << TestLog::Message << "Target frame time: " << params.targetFrameTimeUs << " us (" << 1000000 / params.targetFrameTimeUs << " fps)" << TestLog::EndMessage;
407 log << TestLog::Message << " iteration " << iterNdx << ": " << calibrateIterations[iterNdx].numDrawCalls << " calls => "
409 << de::floatToString(1000000.0f / calibrateIterations[iterNdx].frameTime, 2) << " fps)" << TestLog::EndMessage;
411 log << TestLog::Integer("CallCount", "Calibrated call count", "", QP_KEY_TAG_NONE, calibrator.getMeasureState().numDrawCalls)
412 << TestLog::Integer("FrameCount", "Calibrated frame count", "", QP_KEY_TAG_NONE, (int)calibrator.getMeasureState().frameTimes.size());
413 log << TestLog::EndSection;