Trait vulkanalia::vk::ExtValidationCacheExtension[][src]

pub trait ExtValidationCacheExtension: DeviceV1_0 {
    const METADATA: Extension;
    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<()> { ... } }

Associated Constants

const METADATA: Extension[src]

The metadata for this extension.

Loading content...

Provided methods

Loading content...

Implementors

Loading content...