Trait vulkano::pipeline::GraphicsPipelineAbstract [] [src]

pub unsafe trait GraphicsPipelineAbstract: PipelineLayoutAbstract + RenderPassAbstract + VertexSource<Vec<Arc<BufferAccess + Send + Sync>>> {
    fn inner(&self) -> GraphicsPipelineSys;
}

Trait implemented on objects that reference a graphics pipeline. Can be made into a trait object.

Required Methods

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

Implementors