C Specification
To enumerate device layers, call:
|
Warning
|
This functionality is superseded by Vulkan Version 1.0. See Legacy Functionality for more information. |
// Provided by VK_VERSION_1_0
VkResult vkEnumerateDeviceLayerProperties(
VkPhysicalDevice physicalDevice,
uint32_t* pPropertyCount,
VkLayerProperties* pProperties);
Parameters
-
physicalDeviceis the physical device that will be queried. -
pPropertyCountis a pointer to an integer related to the number of layer properties available or queried. -
pPropertiesis eitherNULLor a pointer to an array of VkLayerProperties structures.
Description
Physical device layers are not supported.
pPropertyCount will be 0, and VK_SUCCESS is 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.