| 12431 | } |
| 12432 | |
| 12433 | std::string VulkanHppGenerator::getPlatform( std::string const & title ) const |
| 12434 | { |
| 12435 | if ( !containsByName( m_features, title ) ) |
| 12436 | { |
| 12437 | auto extensionIt = findByName( m_extensions, title ); |
| 12438 | assert( extensionIt != m_extensions.end() ); |
| 12439 | return extensionIt->platform; |
| 12440 | } |
| 12441 | return ""; |
| 12442 | } |
| 12443 | |
| 12444 | std::pair<std::string, std::string> VulkanHppGenerator::getPoolTypeAndName( std::string const & type ) const |
| 12445 | { |
nothing calls this directly
no test coverage detected