Trait vulkano::pipeline::Pipeline[][src]

pub trait Pipeline {
    fn bind_point(&self) -> PipelineBindPoint;
fn layout(&self) -> &Arc<PipelineLayout>;
fn num_used_descriptor_sets(&self) -> u32; }
Expand description

A trait for operations shared between pipeline types.

Required methods

Returns the bind point of this pipeline.

Returns the pipeline layout used in this pipeline.

Returns the number of descriptor sets actually accessed by this pipeline. This may be less than the number of sets in the pipeline layout.

Implementors