mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Add support for a new class of commands. (#1741)
This commit is contained in:
parent
5bd1e56054
commit
84b77d1406
@ -3687,7 +3687,8 @@ std::string VulkanHppGenerator::generateCommandResultMultiSuccessWithErrors1Retu
|
||||
{
|
||||
if ( commandData.params[vectorParams.begin()->second.lenParam].type.type == "uint32_t" )
|
||||
{
|
||||
if ( isStructureChainAnchor( commandData.params[vectorParams.begin()->first].type.type ) )
|
||||
if ( ( ( commandData.params[vectorParams.begin()->first].type.type != "void" ) &&
|
||||
!isHandleType( commandData.params[vectorParams.begin()->first].type.type ) ) )
|
||||
{
|
||||
return generateCommandSetInclusive( name,
|
||||
commandData,
|
||||
@ -5026,7 +5027,7 @@ std::string VulkanHppGenerator::generateConstexprDefines() const
|
||||
std::find_if( enumConstants.begin(), enumConstants.end(), []( auto const & keyval ) { return keyval.first.ends_with( "_EXTENSION_NAME" ); } );
|
||||
auto const & specVersionMacroPtr =
|
||||
std::find_if( enumConstants.begin(), enumConstants.end(), []( auto const & keyval ) { return keyval.first.ends_with( "_SPEC_VERSION" ); } );
|
||||
assert( extensionMacroPtr != enumConstants.end());
|
||||
assert( extensionMacroPtr != enumConstants.end() );
|
||||
assert( specVersionMacroPtr != enumConstants.end() );
|
||||
|
||||
auto const & extensionMacro = extensionMacroPtr->first;
|
||||
|
Loading…
Reference in New Issue
Block a user