Explicitly ignore new command attribute "conditionalrendering" (#2223)

This commit is contained in:
Andreas Süßenbach 2025-07-21 11:58:50 +02:00 committed by GitHub
parent 11bab25e31
commit d82ba7c2a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1664,8 +1664,8 @@ std::vector<std::string> VulkanHppGenerator::determineDataTypes( std::vector<Vul
}
else
{
dataTypes.push_back( trimEnd(
stripPostfix( params[rp].type.compose( "Vk", ( raii && m_handles.contains( params[rp].type.type ) ) ? "VULKAN_HPP_NAMESPACE" : "" ), "*" ) ) );
dataTypes.push_back(
trimEnd( stripPostfix( params[rp].type.compose( "Vk", ( raii && m_handles.contains( params[rp].type.type ) ) ? "VULKAN_HPP_NAMESPACE" : "" ), "*" ) ) );
}
}
return dataTypes;
@ -13786,6 +13786,7 @@ void VulkanHppGenerator::readCommand( tinyxml2::XMLElement const * element )
{ "api", { "vulkan", "vulkansc" } },
{ "cmdbufferlevel", { "primary", "secondary" } },
{ "comment", {} },
{ "conditionalrendering", { "false", "true" } },
{ "errorcodes", {} },
{ "export", { "vulkan", "vulkansc" } },
{ "queues", {} },