Struct wgpu_hal::ComputePipelineDescriptor
source · pub struct ComputePipelineDescriptor<'a, A: Api> {
pub label: Label<'a>,
pub layout: &'a A::PipelineLayout,
pub stage: ProgrammableStage<'a, A>,
}
Expand description
Describes a compute pipeline.
Fields§
§label: Label<'a>
§layout: &'a A::PipelineLayout
The layout of bind groups for this pipeline.
stage: ProgrammableStage<'a, A>
The compiled compute stage and its entry point.
Trait Implementations§
source§impl<'a, A: Clone + Api> Clone for ComputePipelineDescriptor<'a, A>where
A::PipelineLayout: Clone,
impl<'a, A: Clone + Api> Clone for ComputePipelineDescriptor<'a, A>where A::PipelineLayout: Clone,
source§fn clone(&self) -> ComputePipelineDescriptor<'a, A>
fn clone(&self) -> ComputePipelineDescriptor<'a, A>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more