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

pub unsafe trait ComputePipelineAbstract: PipelineLayoutAbstract {
    fn inner(&self) -> ComputePipelineSys;
}

Trait implemented on all compute pipelines.

Required methods

fn inner(&self) -> ComputePipelineSys

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

Loading content...

Implementors

impl<Pl> ComputePipelineAbstract for ComputePipeline<Pl> where
    Pl: PipelineLayoutAbstract
[src]

impl<T> ComputePipelineAbstract for T where
    T: SafeDeref,
    T::Target: ComputePipelineAbstract
[src]

Loading content...