Lines Matching defs:name

151 	InternalformatCaseBase(deqp::Context& context, const std::string& name);
194 InternalformatCaseBase::InternalformatCaseBase(deqp::Context& context, const std::string& name)
195 : deqp::TestCase(context, name.c_str(), ""), m_renderWidth(64), m_renderHeight(64)
781 Texture2DCase(deqp::Context& context, const std::string& name, const TextureFormat& textureFormat);
792 Texture2DCase::Texture2DCase(deqp::Context& context, const std::string& name, const TextureFormat& testFormat)
793 : InternalformatCaseBase(context, name.c_str()), m_testFormat(testFormat)
924 CopyTexImageCase(deqp::Context& context, const std::string& name, const CopyTexImageFormat& copyTexImageFormat);
935 CopyTexImageCase::CopyTexImageCase(deqp::Context& context, const std::string& name,
937 : InternalformatCaseBase(context, name.c_str()), m_testFormat(copyTexImageFormat)
1072 RenderbufferCase(deqp::Context& context, const std::string& name, const RenderbufferFormat& renderbufferFormat);
1098 RenderbufferCase::RenderbufferCase(deqp::Context& context, const std::string& name,
1100 : InternalformatCaseBase(context, name.c_str())
1861 std::string name = format + "_" + type + "_" + internalFormat;
1863 name += "_linear";
1865 texture2DGroup->addChild(new Texture2DCase(m_context, name, tf));
1874 std::string name = formatToString(ctif.internalFormat);
1875 copyTexImageGroup->addChild(new CopyTexImageCase(m_context, name, ctif));
1884 std::string name = formatToString(rbf.format);
1885 renderbufferGroup->addChild(new RenderbufferCase(m_context, name, rbf));