pub trait ExtValidationCacheExtension: DeviceV1_0 {
    const METADATA: Extension = EXT_VALIDATION_CACHE_EXTENSION;

    // Provided methods
    unsafe fn create_validation_cache_ext(
        &self,
        create_info: &ValidationCacheCreateInfoEXT,
        allocator: Option<&AllocationCallbacks>
    ) -> VkResult<ValidationCacheEXT> { ... }
    unsafe fn destroy_validation_cache_ext(
        &self,
        validation_cache: ValidationCacheEXT,
        allocator: Option<&AllocationCallbacks>
    ) { ... }
    unsafe fn get_validation_cache_data_ext(
        &self,
        validation_cache: ValidationCacheEXT
    ) -> VkResult<Vec<u8>> { ... }
    unsafe fn merge_validation_caches_ext(
        &self,
        dst_cache: ValidationCacheEXT,
        src_caches: &[ValidationCacheEXT]
    ) -> VkResult<()> { ... }
}
Expand description

Provided Associated Constants§

source

const METADATA: Extension = EXT_VALIDATION_CACHE_EXTENSION

The metadata for this extension.

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§