vkGetPhysicalDeviceCooperativeVectorPropertiesNV(3)
Name
vkGetPhysicalDeviceCooperativeVectorPropertiesNV - Returns properties describing what cooperative vector types are supported
C Specification
To enumerate the supported cooperative vector type combinations, call:
// Provided by VK_NV_cooperative_vector
VkResult vkGetPhysicalDeviceCooperativeVectorPropertiesNV(
VkPhysicalDevice physicalDevice,
uint32_t* pPropertyCount,
VkCooperativeVectorPropertiesNV* pProperties);
Parameters
-
physicalDevice
is the physical device. -
pPropertyCount
is a pointer to an integer related to the number of cooperative vector properties available or queried. -
pProperties
is eitherNULL
or a pointer to an array of VkCooperativeVectorPropertiesNV structures.
Description
If pProperties
is NULL
, then the number of cooperative vector
properties available is returned in pPropertyCount
.
Otherwise, pPropertyCount
must point to a variable set by the user to
the number of elements in the pProperties
array, and on return the
variable is overwritten with the number of structures actually written to
pProperties
.
If pPropertyCount
is less than the number of cooperative vector
properties available, at most pPropertyCount
structures will be
written, and VK_INCOMPLETE
will be returned instead of
VK_SUCCESS
, to indicate that not all the available cooperative vector
properties were returned.
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.