Remove restriction on get-commands to start with 'vkGet'

This commit is contained in:
asuessenbach 2021-09-14 08:37:27 +02:00
parent 71696cb748
commit f17ff86a97

View File

@ -5029,8 +5029,6 @@ std::string VulkanHppGenerator::generateCommandSetVoid0Vector( std::string const
generateCommandVoidGetChain( name, commandData, initialSkipCount, definition, returnParamIndices[0] ) ); generateCommandVoidGetChain( name, commandData, initialSkipCount, definition, returnParamIndices[0] ) );
} }
else if ( commandData.params[returnParamIndices[0]].type.type != "void" ) else if ( commandData.params[returnParamIndices[0]].type.type != "void" )
{
if ( beginsWith( name, "vkGet" ) )
{ {
return generateCommandSetStandardEnhanced( return generateCommandSetStandardEnhanced(
definition, definition,
@ -5038,7 +5036,6 @@ std::string VulkanHppGenerator::generateCommandSetVoid0Vector( std::string const
generateCommandVoidGetValue( name, commandData, initialSkipCount, definition, {}, returnParamIndices[0] ) ); generateCommandVoidGetValue( name, commandData, initialSkipCount, definition, {}, returnParamIndices[0] ) );
} }
} }
}
return ""; return "";
} }