Merge pull request #1140 from asuessenbach/fix

Fix vector constructor argument in generateCommandResultEnumerateChained()
This commit is contained in:
Andreas Süßenbach 2021-11-16 11:46:08 +01:00 committed by GitHub
commit 6d5e90ec59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2964,7 +2964,7 @@ std::string
${nodiscard}VULKAN_HPP_INLINE std::vector<StructureChain, StructureChainAllocator> ${className}${classSeparator}${commandName}( ${argumentList} )${const}
{
VULKAN_HPP_ASSERT( d.getVkHeaderVersion() == VK_HEADER_VERSION );
std::vector<StructureChain, StructureChainAllocator> returnVector(${structureChainAllocator});
std::vector<StructureChain, StructureChainAllocator> returnVector${structureChainAllocator};
std::vector<${vectorElementType}> ${vectorName};
${counterType} ${counterName};
Result result;
@ -3015,7 +3015,7 @@ std::string
{ "firstCallArguments", generateCallArgumentsEnhanced( commandData, initialSkipCount, true, {}, false ) },
{ "nodiscard", nodiscard },
{ "secondCallArguments", generateCallArgumentsEnhanced( commandData, initialSkipCount, false, {}, false ) },
{ "structureChainAllocator", withAllocator ? ( " structureChainAllocator " ) : "" },
{ "structureChainAllocator", withAllocator ? ( "( structureChainAllocator )" ) : "" },
{ "typenameCheck", typenameCheck },
{ "vectorElementType", vectorElementType },
{ "vectorName", startLowerCase( stripPrefix( commandData.params[vectorParamIndex.first].name, "p" ) ) },