mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Combine two types of commands into one generation function
This commit is contained in:
parent
43cae31979
commit
de7127a963
@ -1913,6 +1913,7 @@ std::string VulkanHppGenerator::combineDataTypes( std::map<size_t, size_t> const
|
|||||||
bool singular,
|
bool singular,
|
||||||
bool enumerating,
|
bool enumerating,
|
||||||
std::vector<std::string> const & dataTypes,
|
std::vector<std::string> const & dataTypes,
|
||||||
|
bool unique,
|
||||||
bool raii ) const
|
bool raii ) const
|
||||||
{
|
{
|
||||||
assert( dataTypes.size() == returnParams.size() );
|
assert( dataTypes.size() == returnParams.size() );
|
||||||
@ -1924,7 +1925,7 @@ std::string VulkanHppGenerator::combineDataTypes( std::map<size_t, size_t> const
|
|||||||
modifiedDataTypes[i] = ( vectorParamIt == vectorParams.end() || singular )
|
modifiedDataTypes[i] = ( vectorParamIt == vectorParams.end() || singular )
|
||||||
? dataTypes[i]
|
? dataTypes[i]
|
||||||
: ( "std::vector<" + dataTypes[i] +
|
: ( "std::vector<" + dataTypes[i] +
|
||||||
( raii ? ">" : ( ", " + startUpperCase( stripPrefix( dataTypes[i], "VULKAN_HPP_NAMESPACE::" ) ) + "Allocator>" ) ) );
|
( raii || unique ? ">" : ( ", " + startUpperCase( stripPrefix( dataTypes[i], "VULKAN_HPP_NAMESPACE::" ) ) + "Allocator>" ) ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string combinedType;
|
std::string combinedType;
|
||||||
@ -3446,7 +3447,7 @@ std::string VulkanHppGenerator::generateCommandEnhanced( std::string const &
|
|||||||
bool enumerating = determineEnumeration( vectorParams, returnParams );
|
bool enumerating = determineEnumeration( vectorParams, returnParams );
|
||||||
|
|
||||||
std::vector<std::string> dataTypes = determineDataTypes( commandData.params, vectorParams, returnParams, templatedParams );
|
std::vector<std::string> dataTypes = determineDataTypes( commandData.params, vectorParams, returnParams, templatedParams );
|
||||||
std::string dataType = combineDataTypes( vectorParams, returnParams, singular, enumerating, dataTypes, false );
|
std::string dataType = combineDataTypes( vectorParams, returnParams, singular, enumerating, dataTypes, unique, false );
|
||||||
|
|
||||||
std::string argumentTemplates = generateArgumentTemplates( commandData.params, returnParams, vectorParams, templatedParams, chained, false );
|
std::string argumentTemplates = generateArgumentTemplates( commandData.params, returnParams, vectorParams, templatedParams, chained, false );
|
||||||
auto [allocatorTemplates, uniqueHandleAllocatorTemplates] =
|
auto [allocatorTemplates, uniqueHandleAllocatorTemplates] =
|
||||||
@ -4683,20 +4684,15 @@ std::string VulkanHppGenerator::generateDataDeclarations( CommandData const &
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::string allocator = stripPrefix( dataTypes[0], "VULKAN_HPP_NAMESPACE::" ) + "Allocator";
|
std::string allocator = stripPrefix( dataTypes[0], "VULKAN_HPP_NAMESPACE::" ) + "Allocator";
|
||||||
std::string dataTypeAllocator = !unique ? ( ", " + startUpperCase( allocator ) ) : "";
|
std::string vectorAllocator = ( withAllocator && !unique ) ? ( ", " + startLowerCase( allocator ) ) : "";
|
||||||
std::string vectorAllocator = ( withAllocator && !unique ) ? ( ", " + startLowerCase( allocator ) ) : "";
|
std::string vectorSize = getVectorSize( commandData.params, vectorParams, returnParams[0], dataTypes[0], templatedParams );
|
||||||
std::string vectorSize = getVectorSize( commandData.params, vectorParams, returnParams[0], dataTypes[0], templatedParams );
|
|
||||||
|
|
||||||
std::string const dataDeclarationsTemplate =
|
std::string const dataDeclarationsTemplate = R"(${dataType} ${returnVariable}( ${vectorSize}${vectorAllocator} );)";
|
||||||
R"(std::vector<${dataType}${dataTypeAllocator}> ${returnVariable}( ${vectorSize}${vectorAllocator} );)";
|
|
||||||
|
|
||||||
dataDeclarations = replaceWithMap( dataDeclarationsTemplate,
|
dataDeclarations = replaceWithMap(
|
||||||
{ { "dataType", dataTypes[0] },
|
dataDeclarationsTemplate,
|
||||||
{ "dataTypeAllocator", dataTypeAllocator },
|
{ { "dataType", dataType }, { "returnVariable", returnVariable }, { "vectorAllocator", vectorAllocator }, { "vectorSize", vectorSize } } );
|
||||||
{ "returnVariable", returnVariable },
|
|
||||||
{ "vectorAllocator", vectorAllocator },
|
|
||||||
{ "vectorSize", vectorSize } } );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -6143,7 +6139,7 @@ std::string VulkanHppGenerator::generateRAIIHandleCommandEnhanced( std::map<std:
|
|||||||
|
|
||||||
bool enumerating = determineEnumeration( vectorParams, returnParams );
|
bool enumerating = determineEnumeration( vectorParams, returnParams );
|
||||||
std::vector<std::string> dataTypes = determineDataTypes( commandIt->second.params, vectorParams, returnParams, templatedParams );
|
std::vector<std::string> dataTypes = determineDataTypes( commandIt->second.params, vectorParams, returnParams, templatedParams );
|
||||||
std::string dataType = combineDataTypes( vectorParams, returnParams, false, enumerating, dataTypes, true );
|
std::string dataType = combineDataTypes( vectorParams, returnParams, false, enumerating, dataTypes, false, true );
|
||||||
|
|
||||||
std::string argumentTemplates = generateArgumentTemplates( commandIt->second.params, returnParams, vectorParams, templatedParams, chained, true );
|
std::string argumentTemplates = generateArgumentTemplates( commandIt->second.params, returnParams, vectorParams, templatedParams, chained, true );
|
||||||
std::string argumentList =
|
std::string argumentList =
|
||||||
@ -6167,6 +6163,7 @@ std::string VulkanHppGenerator::generateRAIIHandleCommandEnhanced( std::map<std:
|
|||||||
{
|
{
|
||||||
${functionPointerCheck}
|
${functionPointerCheck}
|
||||||
${vectorSizeCheck}
|
${vectorSizeCheck}
|
||||||
|
${dataSizeChecks}
|
||||||
${dataDeclarations}
|
${dataDeclarations}
|
||||||
${callSequence}
|
${callSequence}
|
||||||
${resultCheck}
|
${resultCheck}
|
||||||
@ -6183,6 +6180,7 @@ ${vectorSizeCheck}
|
|||||||
commandIt->second, returnParams, vectorParams, templatedParams, false, false, chained, false, dataTypes, dataType, returnType, returnVariable );
|
commandIt->second, returnParams, vectorParams, templatedParams, false, false, chained, false, dataTypes, dataType, returnType, returnVariable );
|
||||||
std::string dataPreparation =
|
std::string dataPreparation =
|
||||||
generateDataPreparation( commandIt->second, initialSkipCount, returnParams, vectorParams, templatedParams, false, false, false, chained, enumerating );
|
generateDataPreparation( commandIt->second, initialSkipCount, returnParams, vectorParams, templatedParams, false, false, false, chained, enumerating );
|
||||||
|
std::string dataSizeChecks = generateDataSizeChecks( commandIt->second, returnParams, dataTypes, vectorParams, templatedParams, false );
|
||||||
std::string resultCheck = generateResultCheck( commandIt->second, className, "::", commandName, enumerating );
|
std::string resultCheck = generateResultCheck( commandIt->second, className, "::", commandName, enumerating );
|
||||||
std::string returnStatement = generateReturnStatement( commandIt->first,
|
std::string returnStatement = generateReturnStatement( commandIt->first,
|
||||||
commandIt->second,
|
commandIt->second,
|
||||||
@ -6206,6 +6204,7 @@ ${vectorSizeCheck}
|
|||||||
{ "commandName", commandName },
|
{ "commandName", commandName },
|
||||||
{ "dataDeclarations", dataDeclarations },
|
{ "dataDeclarations", dataDeclarations },
|
||||||
{ "dataPreparation", dataPreparation },
|
{ "dataPreparation", dataPreparation },
|
||||||
|
{ "dataSizeChecks", dataSizeChecks },
|
||||||
{ "functionPointerCheck", generateFunctionPointerCheck( commandIt->first, commandIt->second.referencedIn ) },
|
{ "functionPointerCheck", generateFunctionPointerCheck( commandIt->first, commandIt->second.referencedIn ) },
|
||||||
{ "nodiscard", nodiscard },
|
{ "nodiscard", nodiscard },
|
||||||
{ "noexcept", noexceptString },
|
{ "noexcept", noexceptString },
|
||||||
@ -7197,7 +7196,7 @@ std::string VulkanHppGenerator::generateRAIIHandleCommandResultSingleSuccessWith
|
|||||||
{
|
{
|
||||||
if ( commandIt->second.params[vectorParams.begin()->second].type.type == "size_t" )
|
if ( commandIt->second.params[vectorParams.begin()->second].type.type == "size_t" )
|
||||||
{
|
{
|
||||||
str = generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidVector( commandIt, initialSkipCount, vectorParams, returnParam, definition );
|
str = generateRAIIHandleCommandEnhanced( commandIt, initialSkipCount, { returnParam }, vectorParams, definition, false );
|
||||||
str +=
|
str +=
|
||||||
generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidSingular( commandIt, initialSkipCount, vectorParams, returnParam, definition );
|
generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidSingular( commandIt, initialSkipCount, vectorParams, returnParam, definition );
|
||||||
}
|
}
|
||||||
@ -7212,8 +7211,7 @@ std::string VulkanHppGenerator::generateRAIIHandleCommandResultSingleSuccessWith
|
|||||||
{
|
{
|
||||||
if ( commandIt->second.params[std::next( vectorParams.begin() )->second].type.type == "size_t" )
|
if ( commandIt->second.params[std::next( vectorParams.begin() )->second].type.type == "size_t" )
|
||||||
{
|
{
|
||||||
str =
|
str = generateRAIIHandleCommandEnhanced( commandIt, initialSkipCount, { returnParam }, vectorParams, definition, false );
|
||||||
generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidVector( commandIt, initialSkipCount, vectorParams, returnParam, definition );
|
|
||||||
str += generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidSingular(
|
str += generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidSingular(
|
||||||
commandIt, initialSkipCount, vectorParams, returnParam, definition );
|
commandIt, initialSkipCount, vectorParams, returnParam, definition );
|
||||||
}
|
}
|
||||||
@ -7468,68 +7466,6 @@ std::string
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string
|
|
||||||
VulkanHppGenerator::generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidVector( std::map<std::string, CommandData>::const_iterator commandIt,
|
|
||||||
size_t initialSkipCount,
|
|
||||||
std::map<size_t, size_t> const & vectorParams,
|
|
||||||
size_t returnParam,
|
|
||||||
bool definition ) const
|
|
||||||
{
|
|
||||||
std::set<size_t> skippedParams = determineSkippedParams( commandIt->second.params, initialSkipCount, vectorParams, { returnParam }, false );
|
|
||||||
std::string argumentList = generateArgumentListEnhanced(
|
|
||||||
commandIt->second.params, { returnParam }, vectorParams, skippedParams, {}, { returnParam }, definition, false, false, false );
|
|
||||||
std::string argumentTemplates = generateArgumentTemplates( commandIt->second.params, { returnParam }, vectorParams, { returnParam }, false, true );
|
|
||||||
std::string commandName = generateCommandName( commandIt->first, commandIt->second.params, initialSkipCount, m_tags, false, false );
|
|
||||||
std::string dataType = stripPrefix( commandIt->second.params[returnParam].name, "p" ) + "Type";
|
|
||||||
|
|
||||||
if ( definition )
|
|
||||||
{
|
|
||||||
std::string const definitionTemplate =
|
|
||||||
R"(
|
|
||||||
${argumentTemplates}
|
|
||||||
VULKAN_HPP_NODISCARD VULKAN_HPP_INLINE std::vector<${dataType}> ${className}::${commandName}( ${argumentList} ) const
|
|
||||||
{${functionPointerCheck}
|
|
||||||
VULKAN_HPP_ASSERT( ${dataSize} % sizeof( ${dataType} ) == 0 );
|
|
||||||
std::vector<${dataType}> ${dataName}( ${dataSize} / sizeof( ${dataType} ) );
|
|
||||||
Result result = static_cast<Result>( getDispatcher()->${vkCommand}( ${callArguments} ) );
|
|
||||||
if ( ${failureCheck} )
|
|
||||||
{
|
|
||||||
throwResultException( result, VULKAN_HPP_NAMESPACE_STRING"::${className}::${commandName}" );
|
|
||||||
}
|
|
||||||
return ${dataName};
|
|
||||||
}
|
|
||||||
)";
|
|
||||||
|
|
||||||
std::string callArguments = generateCallArgumentsEnhanced( commandIt->second, initialSkipCount, false, {}, {}, true );
|
|
||||||
std::string dataName = startLowerCase( stripPrefix( commandIt->second.params[returnParam].name, "p" ) );
|
|
||||||
|
|
||||||
return replaceWithMap( definitionTemplate,
|
|
||||||
{ { "argumentList", argumentList },
|
|
||||||
{ "argumentTemplates", argumentTemplates },
|
|
||||||
{ "callArguments", callArguments },
|
|
||||||
{ "className", stripPrefix( commandIt->second.params[initialSkipCount - 1].type.type, "Vk" ) },
|
|
||||||
{ "commandName", commandName },
|
|
||||||
{ "dataName", dataName },
|
|
||||||
{ "dataType", dataType },
|
|
||||||
{ "dataSize", commandIt->second.params[returnParam].len },
|
|
||||||
{ "failureCheck", generateFailureCheck( commandIt->second.successCodes ) },
|
|
||||||
{ "functionPointerCheck", generateFunctionPointerCheck( commandIt->first, commandIt->second.referencedIn ) },
|
|
||||||
{ "vkCommand", commandIt->first } } );
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
std::string const declarationTemplate =
|
|
||||||
R"(
|
|
||||||
${argumentTemplates}
|
|
||||||
VULKAN_HPP_NODISCARD std::vector<${dataType}> ${commandName}( ${argumentList} ) const;
|
|
||||||
)";
|
|
||||||
|
|
||||||
return replaceWithMap(
|
|
||||||
declarationTemplate,
|
|
||||||
{ { "argumentList", argumentList }, { "argumentTemplates", argumentTemplates }, { "commandName", commandName }, { "dataType", dataType } } );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string VulkanHppGenerator::generateRAIIHandleCommandResultSingleSuccessWithErrors2Return( std::map<std::string, CommandData>::const_iterator commandIt,
|
std::string VulkanHppGenerator::generateRAIIHandleCommandResultSingleSuccessWithErrors2Return( std::map<std::string, CommandData>::const_iterator commandIt,
|
||||||
size_t initialSkipCount,
|
size_t initialSkipCount,
|
||||||
bool definition,
|
bool definition,
|
||||||
@ -9421,10 +9357,11 @@ std::string VulkanHppGenerator::generateReturnType(
|
|||||||
{
|
{
|
||||||
auto from = dataType.find( '<' ) + 1;
|
auto from = dataType.find( '<' ) + 1;
|
||||||
assert( from != std::string::npos );
|
assert( from != std::string::npos );
|
||||||
auto to = dataType.find( ',', from );
|
auto to = dataType.find( '>', from );
|
||||||
assert( to != std::string::npos );
|
assert( to == dataType.length() - 1 );
|
||||||
std::string type = dataType.substr( from, to - from );
|
std::string type = dataType.substr( from, to - from );
|
||||||
modifiedDataType.replace( from, to - from, "UniqueHandle<" + type + ", Dispatch>" );
|
assert( beginsWith( type, "VULKAN_HPP_NAMESPACE::" ) );
|
||||||
|
modifiedDataType.replace( from, to - from, "UniqueHandle<" + type + ", Dispatch>, " + stripPrefix( type, "VULKAN_HPP_NAMESPACE::" ) + "Allocator" );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -401,6 +401,7 @@ private:
|
|||||||
bool singular,
|
bool singular,
|
||||||
bool enumerating,
|
bool enumerating,
|
||||||
std::vector<std::string> const & dataTypes,
|
std::vector<std::string> const & dataTypes,
|
||||||
|
bool unique,
|
||||||
bool raii ) const;
|
bool raii ) const;
|
||||||
bool containsArray( std::string const & type ) const;
|
bool containsArray( std::string const & type ) const;
|
||||||
bool containsFuncPointer( std::string const & type ) const;
|
bool containsFuncPointer( std::string const & type ) const;
|
||||||
@ -781,11 +782,6 @@ private:
|
|||||||
std::map<size_t, size_t> const & vectorParamIndices,
|
std::map<size_t, size_t> const & vectorParamIndices,
|
||||||
size_t returnParam,
|
size_t returnParam,
|
||||||
bool definition ) const;
|
bool definition ) const;
|
||||||
std::string generateRAIIHandleCommandResultSingleSuccessWithErrors1ReturnVoidVector( std::map<std::string, CommandData>::const_iterator commandIt,
|
|
||||||
size_t initialSkipCount,
|
|
||||||
std::map<size_t, size_t> const & vectorParamIndices,
|
|
||||||
size_t returnParam,
|
|
||||||
bool definition ) const;
|
|
||||||
std::string generateRAIIHandleCommandResultSingleSuccessWithErrors2Return( std::map<std::string, CommandData>::const_iterator commandIt,
|
std::string generateRAIIHandleCommandResultSingleSuccessWithErrors2Return( std::map<std::string, CommandData>::const_iterator commandIt,
|
||||||
size_t initialSkipCount,
|
size_t initialSkipCount,
|
||||||
bool definition,
|
bool definition,
|
||||||
|
@ -14913,20 +14913,19 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
{
|
{
|
||||||
VULKAN_HPP_ASSERT( getDispatcher()->vkWriteAccelerationStructuresPropertiesKHR &&
|
VULKAN_HPP_ASSERT( getDispatcher()->vkWriteAccelerationStructuresPropertiesKHR &&
|
||||||
"Function <vkWriteAccelerationStructuresPropertiesKHR> needs extension <VK_KHR_acceleration_structure> enabled!" );
|
"Function <vkWriteAccelerationStructuresPropertiesKHR> needs extension <VK_KHR_acceleration_structure> enabled!" );
|
||||||
|
|
||||||
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
||||||
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
||||||
Result result = static_cast<Result>(
|
VkResult result =
|
||||||
getDispatcher()->vkWriteAccelerationStructuresPropertiesKHR( static_cast<VkDevice>( m_device ),
|
getDispatcher()->vkWriteAccelerationStructuresPropertiesKHR( static_cast<VkDevice>( m_device ),
|
||||||
accelerationStructures.size(),
|
accelerationStructures.size(),
|
||||||
reinterpret_cast<const VkAccelerationStructureKHR *>( accelerationStructures.data() ),
|
reinterpret_cast<const VkAccelerationStructureKHR *>( accelerationStructures.data() ),
|
||||||
static_cast<VkQueryType>( queryType ),
|
static_cast<VkQueryType>( queryType ),
|
||||||
data.size() * sizeof( DataType ),
|
data.size() * sizeof( DataType ),
|
||||||
reinterpret_cast<void *>( data.data() ),
|
reinterpret_cast<void *>( data.data() ),
|
||||||
stride ) );
|
stride );
|
||||||
if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess )
|
resultCheck( static_cast<VULKAN_HPP_NAMESPACE::Result>( result ), VULKAN_HPP_NAMESPACE_STRING "::Device::writeAccelerationStructuresPropertiesKHR" );
|
||||||
{
|
|
||||||
throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Device::writeAccelerationStructuresPropertiesKHR" );
|
|
||||||
}
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -15337,18 +15336,17 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
{
|
{
|
||||||
VULKAN_HPP_ASSERT( getDispatcher()->vkGetRayTracingShaderGroupHandlesNV &&
|
VULKAN_HPP_ASSERT( getDispatcher()->vkGetRayTracingShaderGroupHandlesNV &&
|
||||||
"Function <vkGetRayTracingShaderGroupHandlesNV> needs extension <VK_NV_ray_tracing> enabled!" );
|
"Function <vkGetRayTracingShaderGroupHandlesNV> needs extension <VK_NV_ray_tracing> enabled!" );
|
||||||
|
|
||||||
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
||||||
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
||||||
Result result = static_cast<Result>( getDispatcher()->vkGetRayTracingShaderGroupHandlesNV( static_cast<VkDevice>( m_device ),
|
VkResult result = getDispatcher()->vkGetRayTracingShaderGroupHandlesNV( static_cast<VkDevice>( m_device ),
|
||||||
static_cast<VkPipeline>( m_pipeline ),
|
static_cast<VkPipeline>( m_pipeline ),
|
||||||
firstGroup,
|
firstGroup,
|
||||||
groupCount,
|
groupCount,
|
||||||
data.size() * sizeof( DataType ),
|
data.size() * sizeof( DataType ),
|
||||||
reinterpret_cast<void *>( data.data() ) ) );
|
reinterpret_cast<void *>( data.data() ) );
|
||||||
if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess )
|
resultCheck( static_cast<VULKAN_HPP_NAMESPACE::Result>( result ), VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandlesNV" );
|
||||||
{
|
|
||||||
throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandlesNV" );
|
|
||||||
}
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -15374,17 +15372,15 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
{
|
{
|
||||||
VULKAN_HPP_ASSERT( getDispatcher()->vkGetAccelerationStructureHandleNV &&
|
VULKAN_HPP_ASSERT( getDispatcher()->vkGetAccelerationStructureHandleNV &&
|
||||||
"Function <vkGetAccelerationStructureHandleNV> needs extension <VK_NV_ray_tracing> enabled!" );
|
"Function <vkGetAccelerationStructureHandleNV> needs extension <VK_NV_ray_tracing> enabled!" );
|
||||||
|
|
||||||
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
||||||
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
||||||
Result result =
|
VkResult result = getDispatcher()->vkGetAccelerationStructureHandleNV( static_cast<VkDevice>( m_device ),
|
||||||
static_cast<Result>( getDispatcher()->vkGetAccelerationStructureHandleNV( static_cast<VkDevice>( m_device ),
|
static_cast<VkAccelerationStructureNV>( m_accelerationStructure ),
|
||||||
static_cast<VkAccelerationStructureNV>( m_accelerationStructure ),
|
data.size() * sizeof( DataType ),
|
||||||
data.size() * sizeof( DataType ),
|
reinterpret_cast<void *>( data.data() ) );
|
||||||
reinterpret_cast<void *>( data.data() ) ) );
|
resultCheck( static_cast<VULKAN_HPP_NAMESPACE::Result>( result ), VULKAN_HPP_NAMESPACE_STRING "::AccelerationStructureNV::getHandle" );
|
||||||
if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess )
|
|
||||||
{
|
|
||||||
throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::AccelerationStructureNV::getHandle" );
|
|
||||||
}
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -16920,18 +16916,17 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
{
|
{
|
||||||
VULKAN_HPP_ASSERT( getDispatcher()->vkGetRayTracingShaderGroupHandlesKHR &&
|
VULKAN_HPP_ASSERT( getDispatcher()->vkGetRayTracingShaderGroupHandlesKHR &&
|
||||||
"Function <vkGetRayTracingShaderGroupHandlesKHR> needs extension <VK_KHR_ray_tracing_pipeline> enabled!" );
|
"Function <vkGetRayTracingShaderGroupHandlesKHR> needs extension <VK_KHR_ray_tracing_pipeline> enabled!" );
|
||||||
|
|
||||||
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
||||||
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
||||||
Result result = static_cast<Result>( getDispatcher()->vkGetRayTracingShaderGroupHandlesKHR( static_cast<VkDevice>( m_device ),
|
VkResult result = getDispatcher()->vkGetRayTracingShaderGroupHandlesKHR( static_cast<VkDevice>( m_device ),
|
||||||
static_cast<VkPipeline>( m_pipeline ),
|
static_cast<VkPipeline>( m_pipeline ),
|
||||||
firstGroup,
|
firstGroup,
|
||||||
groupCount,
|
groupCount,
|
||||||
data.size() * sizeof( DataType ),
|
data.size() * sizeof( DataType ),
|
||||||
reinterpret_cast<void *>( data.data() ) ) );
|
reinterpret_cast<void *>( data.data() ) );
|
||||||
if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess )
|
resultCheck( static_cast<VULKAN_HPP_NAMESPACE::Result>( result ), VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandlesKHR" );
|
||||||
{
|
|
||||||
throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingShaderGroupHandlesKHR" );
|
|
||||||
}
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -16958,18 +16953,18 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
{
|
{
|
||||||
VULKAN_HPP_ASSERT( getDispatcher()->vkGetRayTracingCaptureReplayShaderGroupHandlesKHR &&
|
VULKAN_HPP_ASSERT( getDispatcher()->vkGetRayTracingCaptureReplayShaderGroupHandlesKHR &&
|
||||||
"Function <vkGetRayTracingCaptureReplayShaderGroupHandlesKHR> needs extension <VK_KHR_ray_tracing_pipeline> enabled!" );
|
"Function <vkGetRayTracingCaptureReplayShaderGroupHandlesKHR> needs extension <VK_KHR_ray_tracing_pipeline> enabled!" );
|
||||||
|
|
||||||
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
VULKAN_HPP_ASSERT( dataSize % sizeof( DataType ) == 0 );
|
||||||
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
std::vector<DataType> data( dataSize / sizeof( DataType ) );
|
||||||
Result result = static_cast<Result>( getDispatcher()->vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( static_cast<VkDevice>( m_device ),
|
VkResult result = getDispatcher()->vkGetRayTracingCaptureReplayShaderGroupHandlesKHR( static_cast<VkDevice>( m_device ),
|
||||||
static_cast<VkPipeline>( m_pipeline ),
|
static_cast<VkPipeline>( m_pipeline ),
|
||||||
firstGroup,
|
firstGroup,
|
||||||
groupCount,
|
groupCount,
|
||||||
data.size() * sizeof( DataType ),
|
data.size() * sizeof( DataType ),
|
||||||
reinterpret_cast<void *>( data.data() ) ) );
|
reinterpret_cast<void *>( data.data() ) );
|
||||||
if ( result != VULKAN_HPP_NAMESPACE::Result::eSuccess )
|
resultCheck( static_cast<VULKAN_HPP_NAMESPACE::Result>( result ),
|
||||||
{
|
VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingCaptureReplayShaderGroupHandlesKHR" );
|
||||||
throwResultException( result, VULKAN_HPP_NAMESPACE_STRING "::Pipeline::getRayTracingCaptureReplayShaderGroupHandlesKHR" );
|
|
||||||
}
|
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user