Lines Matching refs:description
49 LogImage::LogImage (const std::string& name, const std::string& description, const Surface& surface, qpImageCompressionMode compression)
51 , m_description (description)
59 LogImage::LogImage (const std::string& name, const std::string& description, const ConstPixelBufferAccess& access, qpImageCompressionMode compression)
61 , m_description (description)
97 LogImage::LogImage (const std::string& name, const std::string& description, const ConstPixelBufferAccess& access, const Vec4& scale, const Vec4& bias, qpImageCompressionMode compression)
99 , m_description (description)
209 void TestLog::startImageSet (const char* name, const char* description)
213 if (qpTestLog_startImageSet(m_log, name, description) == DE_FALSE)
248 void TestLog::writeImage (const char* name, const char* description, const ConstPixelBufferAccess& access, const Vec4& pixelScale, const Vec4& pixelBias, qpImageCompressionMode compressionMode)
274 writeImage(name, description, compressionMode,
286 longDesc << description << " (p' = p * " << pixelScale << " + " << pixelBias << ")";
345 longDesc << description << " (p' = p * " << pixelScale << " + " << pixelBias << ")";
374 void TestLog::writeImage (const char* name, const char* description, qpImageCompressionMode compressionMode, qpImageFormat format, int width, int height, int stride, const void* data)
378 if (qpTestLog_writeImage(m_log, name, description, compressionMode, format, width, height, stride, data) == DE_FALSE)
382 void TestLog::startSection (const char* name, const char* description)
386 if (qpTestLog_startSection(m_log, name, description) == DE_FALSE)
438 void TestLog::writeCompileInfo (const char* name, const char* description, bool compileOk, const char* infoLog)
442 if (qpTestLog_writeCompileInfo(m_log, name, description, compileOk ? DE_TRUE : DE_FALSE, infoLog) == DE_FALSE)
446 void TestLog::writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value)
450 if (qpTestLog_writeFloat(m_log, name, description, unit, tag, value) == DE_FALSE)
454 void TestLog::writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value)
458 if (qpTestLog_writeInteger(m_log, name, description, unit, tag, value) == DE_FALSE)
462 void TestLog::startEglConfigSet (const char* name, const char* description)
465 if (qpTestLog_startEglConfigSet(m_log, name, description) == DE_FALSE)
503 void TestLog::endCase (qpTestResult result, const char* description)
506 if (qpTestLog_endCase(m_log, result, description) == DE_FALSE)
531 void TestLog::startSampleList (const std::string& name, const std::string& description)
534 if (qpTestLog_startSampleList(m_log, name.c_str(), description.c_str()) == DE_FALSE)
545 void TestLog::writeValueInfo (const std::string& name, const std::string& description, const std::string& unit, qpSampleValueTag tag)
548 if (qpTestLog_writeValueInfo(m_log, name.c_str(), description.c_str(), unit.empty() ? DE_NULL : unit.c_str(), tag) == DE_FALSE)