Struct vulkano::pipeline::cache::PipelineCache [] [src]

pub struct PipelineCache {
    // some fields omitted
}

Opaque cache that contains pipeline objects.

Methods

impl PipelineCache
[src]

Builds a new pipeline cache from existing data.

The data must have been previously obtained with get_data.

Builds a new empty pipeline cache.

Merges other pipeline caches into this one.

Panic

  • Panics if self is included in the list of other pipelines.

Obtains the data from the cache.

This data can be stored and then reloaded and passed to PipelineCache::new.

Trait Implementations

impl VulkanObject for PipelineCache
[src]

The type of the object.

Returns a reference to the object.

impl Drop for PipelineCache
[src]

A method called when the value goes out of scope. Read more