Structures
VkLayerSettingsCreateInfoEXT
Specify layer capabilities for a Vulkan instance
To create a Vulkan instance with a specific configuration of layer settings,
add VkLayerSettingsCreateInfoEXT structures to the pNext chain
of the VkInstanceCreateInfo structure, specifying the settings to be
configured.
typedef struct VkLayerSettingsCreateInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t settingCount;
const VkLayerSettingEXT* pSettings;
} VkLayerSettingsCreateInfoEXT;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.settingCountis the number of settings to configure.pSettingsis a pointer to an array ofsettingCount
VkLayerSettingEXT values specifying the settings to be configured.
Valid Usage (Implicit)
VUID-VkLayerSettingsCreateInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_LAYER_SETTINGS_CREATE_INFO_EXT
VUID-VkLayerSettingsCreateInfoEXT-pSettings-parameter
If settingCount is not 0, pSettings must be a valid pointer to an array of settingCount valid VkLayerSettingEXT structures