Home | History | Annotate | Download | only in egl

Lines Matching refs:extName

70 std::vector<std::string> getExtFunctionNames (const std::string& extName)
72 const char** names_raw = getExtensionFuncStrs(extName);
105 bool isSupported (const std::string& extName);
142 bool GetProcAddressCase::isSupported (const std::string& extName)
144 return std::find(m_supported.begin(), m_supported.end(), extName) != m_supported.end();
152 GetProcAddressExtensionCase (EglTestContext& eglTestCtx, const char* name, const char* description, const std::string& extName)
154 , m_extName (extName)
288 const std::string& extName = *extIter;
289 const std::vector<std::string> funcNames = getExtFunctionNames(extName);
291 std::string testName (extName);
296 for (size_t ndx = 0; ndx < extName.length(); ndx++)
297 testName[ndx] = std::tolower(extName[ndx]);
299 extensionsGroup->addChild(new GetProcAddressExtensionCase(m_eglTestCtx, testName.c_str(), ("Test " + extName).c_str(), extName));