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

Trait implemented on all compute pipelines.

Required Methods

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

Implementors