mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Relax check for commands listed as required for a feature to just check if it's required for a different feature (#1896)
This commit is contained in:
parent
b35470b05f
commit
600e6d67a2
@ -8706,16 +8706,19 @@ std::string VulkanHppGenerator::generateRAIIHandleCommandDeclarations( std::pair
|
|||||||
else if ( handle.second.secondLevelCommands.contains( command.first ) )
|
else if ( handle.second.secondLevelCommands.contains( command.first ) )
|
||||||
{
|
{
|
||||||
auto listedIt = listedCommands.find( command.first );
|
auto listedIt = listedCommands.find( command.first );
|
||||||
if ( listedIt != listedCommands.end() )
|
if ( listedIt == listedCommands.end() )
|
||||||
{
|
{
|
||||||
checkForError( false,
|
listedCommands.insert( { command.first, { feature.name, command.second } } );
|
||||||
|
assert( !handle.first.empty() );
|
||||||
|
secondLevelCommands.push_back( command.first );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
checkForError( listedIt->second.first == feature.name,
|
||||||
command.second,
|
command.second,
|
||||||
"command <" + command.first + "> already listed as required for feature <" + listedIt->second.first + "> on line " +
|
"command <" + command.first + "> already listed as required for feature <" + listedIt->second.first + "> on line " +
|
||||||
std::to_string( listedIt->second.second ) );
|
std::to_string( listedIt->second.second ) );
|
||||||
}
|
}
|
||||||
listedCommands.insert( { command.first, { feature.name, command.second } } );
|
|
||||||
assert( !handle.first.empty() );
|
|
||||||
secondLevelCommands.push_back( command.first );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user