| 12888 | } |
| 12889 | |
| 12890 | bool VulkanHppGenerator::isTypeRequired( std::string const & type ) const |
| 12891 | { |
| 12892 | auto typeIt = m_types.find( type ); |
| 12893 | assert( typeIt != m_types.end() ); |
| 12894 | return !typeIt->second.requiredBy.empty(); |
| 12895 | } |
| 12896 | |
| 12897 | bool VulkanHppGenerator::isTypeUsed( std::string const & type ) const |
| 12898 | { |
nothing calls this directly
no outgoing calls
no test coverage detected