Lines Matching defs:const

49 LogImage::LogImage (const std::string& name, const std::string& description, const Surface& surface, qpImageCompressionMode compression)
59 LogImage::LogImage (const std::string& name, const std::string& description, const ConstPixelBufferAccess& access, qpImageCompressionMode compression)
82 const ConstPixelBufferAccess depthAccess = tcu::getEffectiveDepthStencilAccess(m_access, tcu::Sampler::MODE_DEPTH);
83 const ConstPixelBufferAccess stencilAccess = tcu::getEffectiveDepthStencilAccess(m_access, tcu::Sampler::MODE_STENCIL);
97 LogImage::LogImage (const std::string& name, const std::string& description, const ConstPixelBufferAccess& access, const Vec4& scale, const Vec4& bias, qpImageCompressionMode compression)
124 void LogImage::write (TestLog& log) const
130 const ConstPixelBufferAccess depthAccess = tcu::getEffectiveDepthStencilAccess(m_access, tcu::Sampler::MODE_DEPTH);
131 const ConstPixelBufferAccess stencilAccess = tcu::getEffectiveDepthStencilAccess(m_access, tcu::Sampler::MODE_STENCIL);
142 MessageBuilder::MessageBuilder (const MessageBuilder& other)
148 MessageBuilder& MessageBuilder::operator= (const MessageBuilder& other)
155 TestLog& MessageBuilder::operator<< (const TestLog::EndMessageToken&)
163 TestLog& SampleBuilder::operator<< (const TestLog::EndSampleToken&)
184 TestLog::TestLog (const char* fileName, deUint32 flags)
201 void TestLog::writeMessage (const char* msgStr)
209 void TestLog::startImageSet (const char* name, const char* description)
226 static Vector<int, Size> computeScaledSize (const Vector<int, Size>& imageSize, int maxSize)
248 void TestLog::writeImage (const char* name, const char* description, const ConstPixelBufferAccess& access, const Vec4& pixelScale, const Vec4& pixelBias, qpImageCompressionMode compressionMode)
252 const TextureFormat& format = access.getFormat();
307 const float blendFactor = 0.85f;
374 void TestLog::writeImage (const char* name, const char* description, qpImageCompressionMode compressionMode, qpImageFormat format, int width, int height, int stride, const void* data)
382 void TestLog::startSection (const char* name, const char* description)
398 void TestLog::startShaderProgram (bool linkOk, const char* linkInfoLog)
414 void TestLog::writeShader (qpShaderType type, const char* source, bool compileOk, const char* infoLog)
422 void TestLog::writeSpirVAssemblySource (const char* source)
430 void TestLog::writeKernelSource (const char* source)
438 void TestLog::writeCompileInfo (const char* name, const char* description, bool compileOk, const char* infoLog)
446 void TestLog::writeFloat (const char* name, const char* description, const char* unit, qpKeyValueTag tag, float value)
454 void TestLog::writeInteger (const char* name, const char* description, const char* unit, qpKeyValueTag tag, deInt64 value)
462 void TestLog::startEglConfigSet (const char* name, const char* description)
469 void TestLog::writeEglConfig (const qpEglConfigInfo* config)
483 void TestLog::startCase (const char* testCasePath, qpTestCaseType testCaseType)
492 const std::string testCasePathStr = testCasePath;
503 void TestLog::endCase (qpTestResult result, const char* description)
531 void TestLog::startSampleList (const std::string& name, const std::string& description)
545 void TestLog::writeValueInfo (const std::string& name, const std::string& description, const std::string& unit, qpSampleValueTag tag)
594 void TestLog::writeRaw(const char* rawContents)
615 const TestLog::BeginMessageToken TestLog::Message = TestLog::BeginMessageToken();
616 const TestLog::EndMessageToken TestLog::EndMessage = TestLog::EndMessageToken();
617 const TestLog::EndImageSetToken TestLog::EndImageSet = TestLog::EndImageSetToken();
618 const TestLog::EndSectionToken TestLog::EndSection = TestLog::EndSectionToken();
619 const TestLog::EndShaderProgramToken TestLog::EndShaderProgram = TestLog::EndShaderProgramToken();
620 const TestLog::SampleInfoToken TestLog::SampleInfo = TestLog::SampleInfoToken();
621 const TestLog::EndSampleInfoToken TestLog::EndSampleInfo = TestLog::EndSampleInfoToken();
622 const TestLog::BeginSampleToken TestLog::Sample = TestLog::BeginSampleToken();
623 const TestLog::EndSampleToken TestLog::EndSample = TestLog::EndSampleToken();
624 const TestLog::EndSampleListToken TestLog::EndSampleList = TestLog::EndSampleListToken();