C Specification
The VkApplicationParametersEXT structure is defined as:
// Provided by VK_EXT_application_parameters
typedef struct VkApplicationParametersEXT {
VkStructureType sType;
const void* pNext;
uint32_t vendorID;
uint32_t deviceID;
uint32_t key;
uint64_t value;
} VkApplicationParametersEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
vendorIDis the VkPhysicalDeviceProperties::vendorIDof the ICD that the application parameter is applied to. -
deviceIDis0or the VkPhysicalDeviceProperties::deviceIDof the physical device that the application parameter is applied to. -
keyis a 32-bit vendor-specific enumerant identifying the application parameter that is being set. -
valueis the 64-bit value that is being set for the application parameter specified bykey.
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.