| 12843 | } |
| 12844 | |
| 12845 | bool VulkanHppGenerator::isSimpleStructure( std::string const & name ) const |
| 12846 | { |
| 12847 | auto structIt = m_structs.find( name ); |
| 12848 | return ( structIt != m_structs.end() ) && !structureHoldsHandle( structIt->second ) && !structureHoldsVector( structIt->second ); |
| 12849 | } |
| 12850 | |
| 12851 | bool VulkanHppGenerator::isStructMember( std::string const & name, std::vector<MemberData> const & memberData ) const |
| 12852 | { |
nothing calls this directly
no outgoing calls
no test coverage detected