| 12735 | } |
| 12736 | |
| 12737 | bool VulkanHppGenerator::isDeviceCommand( CommandData const & commandData ) const |
| 12738 | { |
| 12739 | return !commandData.handle.empty() && !commandData.params.empty() && m_handles.contains( commandData.params[0].type.name ) && |
| 12740 | ( commandData.params[0].type.name != "VkInstance" ) && ( commandData.params[0].type.name != "VkPhysicalDevice" ); |
| 12741 | } |
| 12742 | |
| 12743 | bool VulkanHppGenerator::isEnumerated( std::string const & type ) const |
| 12744 | { |
nothing calls this directly
no outgoing calls
no test coverage detected