| 1301 | } |
| 1302 | |
| 1303 | void VulkanHppGenerator::checkStructMemberTypeIsKnown( std::string const & memberType, int line ) const |
| 1304 | { |
| 1305 | // check that the member type is known |
| 1306 | checkForError( m_types.contains( memberType ), line, "struct member uses unknown type <" + memberType + ">" ); |
| 1307 | } |
| 1308 | |
| 1309 | void VulkanHppGenerator::checkStructMemberTypeIsRequired( std::string const & memberType, int line, std::string const & structureName ) const |
| 1310 | { |
nothing calls this directly
no test coverage detected