| 19 | } |
| 20 | |
| 21 | bool GLExtensionsList::IsSupported(ExtensionName extName) const |
| 22 | { |
| 23 | auto const it = m_supportedMap.find(extName); |
| 24 | if (it != m_supportedMap.end()) |
| 25 | return it->second; |
| 26 | |
| 27 | ASSERT(false, ("Not all used extensions are checked")); |
| 28 | return false; |
| 29 | } |
| 30 | |
| 31 | void GLExtensionsList::CheckExtension(ExtensionName enumName, std::string const & extName) |
| 32 | { |
no test coverage detected