Lines Matching refs:TestLog
32 using tcu::TestLog;
49 TestLog& log = m_testCtx.getLog(); in iterate()
51 log << TestLog::SampleList("TestSamples", "Test Sample List") in iterate()
52 << TestLog::SampleInfo in iterate()
53 … << TestLog::ValueInfo("NumDrawCalls", "Number of draw calls", "", QP_SAMPLE_VALUE_TAG_PREDICTOR) in iterate()
54 << TestLog::ValueInfo("NumOps", "Number of ops in shader", "op", QP_SAMPLE_VALUE_TAG_PREDICTOR) in iterate()
55 << TestLog::ValueInfo("RenderTime", "Rendering time", "ms", QP_SAMPLE_VALUE_TAG_RESPONSE) in iterate()
56 << TestLog::EndSampleInfo; in iterate()
58 log << TestLog::Sample << 1 << 2 << 2.3 << TestLog::EndSample in iterate()
59 << TestLog::Sample << 0 << 0 << 0 << TestLog::EndSample in iterate()
60 << TestLog::Sample << 421 << -23 << 0.00001 << TestLog::EndSample in iterate()
61 << TestLog::Sample << 2 << 9 << -1e9 << TestLog::EndSample in iterate()
62 …<< TestLog::Sample << std::numeric_limits<deInt64>::max() << std::numeric_limits<deInt64>::min() <… in iterate()
63 … << TestLog::Sample << 0x3355 << 0xf24 << std::numeric_limits<double>::max() << TestLog::EndSample; in iterate()
65 log << TestLog::EndSampleList; in iterate()