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

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

Trait implemented on all compute pipelines.

Required methods

pub fn inner(&self) -> ComputePipelineSys<'_>[src]

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...