| 215 | } |
| 216 | |
| 217 | StringList MaterialDatabase::materialNames() const { |
| 218 | StringList names = m_materialIndex.keys(); |
| 219 | names.appendAll(m_metaMaterialIndex.keys()); |
| 220 | return names; |
| 221 | } |
| 222 | |
| 223 | bool MaterialDatabase::isMetaMaterialName(String const& name) const { |
| 224 | return m_metaMaterialIndex.contains(name); |
no test coverage detected