Trait vulkano::pipeline::ComputePipelineAbstract[][src]

pub unsafe trait ComputePipelineAbstract: DeviceOwned {
    fn inner(&self) -> ComputePipelineSys<'_>;
fn layout(&self) -> &Arc<PipelineLayout>; }
Expand description

Trait implemented on all compute pipelines.

Required methods

Returns an opaque object that represents the inside of the compute pipeline.

Returns the pipeline layout used in this compute pipeline.

Implementors