vkCmdConvertCooperativeVectorMatrixNV(3)
Name
vkCmdConvertCooperativeVectorMatrixNV - Convert a cooperative vector matrix from one layout and type to another
C Specification
To convert a matrix to another layout and type, call:
// Provided by VK_NV_cooperative_vector
void vkCmdConvertCooperativeVectorMatrixNV(
VkCommandBuffer commandBuffer,
uint32_t infoCount,
const VkConvertCooperativeVectorMatrixInfoNV* pInfos);
Parameters
-
commandBuffer
is the command buffer into which the command will be recorded. -
infoCount
is the number of layout conversions to perform. -
pInfos
is a pointer to an array of VkConvertCooperativeVectorMatrixInfoNV structures containing information about the layout conversion.
Description
This command does the same conversions as
vkConvertCooperativeVectorMatrixNV, but executes on the device.
One conversion is performed for each of the infoCount
elements of
pInfos
.
This command’s execution is synchronized using
VK_PIPELINE_STAGE_2_CONVERT_COOPERATIVE_VECTOR_MATRIX_BIT_NV
.
Document Notes
For more information, see the Vulkan Specification.
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.