Struct voodoo::GraphicsPipeline [] [src]

pub struct GraphicsPipeline { /* fields omitted */ }

A graphics pipeline.

Destruction

Dropping this GraphicsPipeline will cause Device::destroy_pipeline to be called, automatically releasing any resources associated with it.

Methods

impl GraphicsPipeline
[src]

[src]

Returns a new GraphicsPipelineBuilder.

[src]

Deprecated

: use Device::create_graphics_pipelines

Creates several graphics pipelines at once.

[src]

Returns this object's handle.

[src]

Returns a reference to the associated device.

Trait Implementations

impl Debug for GraphicsPipeline
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GraphicsPipeline
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'g> Handle for &'g GraphicsPipeline
[src]

[src]

Auto Trait Implementations