Lines Matching defs:TestLog

123 void LogImage::write (TestLog& log) const
154 TestLog& MessageBuilder::operator<< (const TestLog::EndMessageToken&)
162 TestLog& SampleBuilder::operator<< (const TestLog::EndSampleToken&)
181 // TestLog
183 TestLog::TestLog (const char* fileName, deUint32 flags)
190 TestLog::~TestLog (void)
195 void TestLog::writeMessage (const char* msgStr)
201 void TestLog::startImageSet (const char* name, const char* description)
207 void TestLog::endImageSet (void)
236 void TestLog::writeImage (const char* name, const char* description, const ConstPixelBufferAccess& access, const Vec4& pixelScale, const Vec4& pixelBias, qpImageCompressionMode compressionMode)
360 void TestLog::writeImage (const char* name, const char* description, qpImageCompressionMode compressionMode, qpImageFormat format, int width, int height, int stride, const void* data)
366 void TestLog::startSection (const char* name, const char* description)
372 void TestLog::endSection (void)
378 void TestLog::startShaderProgram (bool linkOk, const char* linkInfoLog)
384 void TestLog::endShaderProgram (void)
390 void TestLog::writeShader (qpShaderType type, const char* source, bool compileOk, const char* infoLog)
396 void TestLog::writeSpirVAssemblySource (const char* source)
402 void TestLog::writeKernelSource (const char* source)
408 void TestLog::writeCompileInfo (const char* name, const char* description, bool compileOk, const char* infoLog)
414 void TestLog::writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value)
420 void TestLog::writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value)
426 void TestLog::startEglConfigSet (const char* name, const char* description)
432 void TestLog::writeEglConfig (const qpEglConfigInfo* config)
438 void TestLog::endEglConfigSet (void)
444 void TestLog::startCase (const char* testCasePath, qpTestCaseType testCaseType)
450 void TestLog::endCase (qpTestResult result, const char* description)
456 void TestLog::terminateCase (qpTestResult result)
462 void TestLog::startSampleList (const std::string& name, const std::string& description)
468 void TestLog::startSampleInfo (void)
474 void TestLog::writeValueInfo (const std::string& name, const std::string& description, const std::string& unit, qpSampleValueTag tag)
480 void TestLog::endSampleInfo (void)
486 void TestLog::startSample (void)
492 void TestLog::writeSampleValue (double value)
498 void TestLog::writeSampleValue (deInt64 value)
504 void TestLog::endSample (void)
510 void TestLog::endSampleList (void)
516 const TestLog::BeginMessageToken TestLog::Message = TestLog::BeginMessageToken();
517 const TestLog::EndMessageToken TestLog::EndMessage = TestLog::EndMessageToken();
518 const TestLog::EndImageSetToken TestLog::EndImageSet = TestLog::EndImageSetToken();
519 const TestLog::EndSectionToken TestLog::EndSection = TestLog::EndSectionToken();
520 const TestLog::EndShaderProgramToken TestLog::EndShaderProgram = TestLog::EndShaderProgramToken();
521 const TestLog::SampleInfoToken TestLog::SampleInfo = TestLog::SampleInfoToken();
522 const TestLog::EndSampleInfoToken TestLog::EndSampleInfo = TestLog::EndSampleInfoToken();
523 const TestLog::BeginSampleToken TestLog::Sample = TestLog::BeginSampleToken();
524 const TestLog::EndSampleToken TestLog::EndSample = TestLog::EndSampleToken();
525 const TestLog::EndSampleListToken TestLog::EndSampleList = TestLog::EndSampleListToken();