Home | History | Annotate | Download | only in egl

Lines Matching refs:extName

62 FunctionNames getExtFunctionNames (const std::string& extName)
66 if (extName == s_extensions[ndx].name)
103 bool isSupported (const std::string& extName);
167 bool GetProcAddressCase::isSupported (const std::string& extName)
169 return de::contains(m_supported.begin(), m_supported.end(), extName);
177 GetProcAddressExtensionCase (EglTestContext& eglTestCtx, const char* name, const char* description, const std::string& extName)
179 , m_extName (extName)
292 const std::string& extName = s_extensions[extNdx].name;
293 std::string testName (extName);
295 for (size_t ndx = 0; ndx < extName.length(); ndx++)
296 testName[ndx] = de::toLower(extName[ndx]);
298 extensionsGroup->addChild(new GetProcAddressExtensionCase(m_eglTestCtx, testName.c_str(), ("Test " + extName).c_str(), extName));