Structures
VkShaderModuleValidationCacheCreateInfoEXT
Specify validation cache to use during shader module creation
To use a VkValidationCacheEXT to cache shader validation results, add
a VkShaderModuleValidationCacheCreateInfoEXT structure to the
pNext chain of the VkShaderModuleCreateInfo structure,
specifying the cache object to use.
The VkShaderModuleValidationCacheCreateInfoEXT structure is defined
as:
typedef struct VkShaderModuleValidationCacheCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkValidationCacheEXT validationCache;
} VkShaderModuleValidationCacheCreateInfoEXT;
pub struct ShaderModuleValidationCacheCreateInfoEXT {
s_type: vk::StructureType,
p_next: *const c_void,
validation_cache: vk::ValidationCacheEXT,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.validationCacheis the validation cache object from which the results of prior validation attempts will be written, and to which new validation results for this VkShaderModule will be written (if not already present). The implementation must not access this object outside of the duration of the command this structure is passed to.
Valid Usage (Implicit)
VUID-VkShaderModuleValidationCacheCreateInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_SHADER_MODULE_VALIDATION_CACHE_CREATE_INFO_EXT
VUID-VkShaderModuleValidationCacheCreateInfoEXT-validationCache-parameter
validationCache must be a valid VkValidationCacheEXT handle
Parent
VK_EXT_validation_cacheType
Structures