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
sourceimpl<'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,
sourcefn clone(&self) -> ComputePipelineDescriptor<'a, A>
fn clone(&self) -> ComputePipelineDescriptor<'a, A>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<'a, A> RefUnwindSafe for ComputePipelineDescriptor<'a, A> where
<A as Api>::PipelineLayout: RefUnwindSafe,
<A as Api>::ShaderModule: RefUnwindSafe,
impl<'a, A> Send for ComputePipelineDescriptor<'a, A>
impl<'a, A> Sync for ComputePipelineDescriptor<'a, A>
impl<'a, A> Unpin for ComputePipelineDescriptor<'a, A>
impl<'a, A> UnwindSafe for ComputePipelineDescriptor<'a, A> where
<A as Api>::PipelineLayout: RefUnwindSafe,
<A as Api>::ShaderModule: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more