| 12772 | } |
| 12773 | |
| 12774 | bool VulkanHppGenerator::isHandleTypeByStructure( std::string const & type ) const |
| 12775 | { |
| 12776 | auto structIt = m_structs.find( type ); |
| 12777 | return ( structIt != m_structs.end() ) && describesVector( structIt->second ) && isHandleType( structIt->second.members[3].type.name ); |
| 12778 | } |
| 12779 | |
| 12780 | bool VulkanHppGenerator::isLenByStructMember( std::string const & name, std::vector<ParamData> const & params ) const |
| 12781 | { |
nothing calls this directly
no outgoing calls
no test coverage detected