Struct wgpu_hal::ComputePipelineDescriptor
source · pub struct ComputePipelineDescriptor<'a, Pl: DynPipelineLayout + ?Sized, M: DynShaderModule + ?Sized, Pc: DynPipelineCache + ?Sized> {
pub label: Label<'a>,
pub layout: &'a Pl,
pub stage: ProgrammableStage<'a, M>,
pub cache: Option<&'a Pc>,
}
Expand description
Describes a compute pipeline.
Fields§
§label: Label<'a>
§layout: &'a Pl
The layout of bind groups for this pipeline.
stage: ProgrammableStage<'a, M>
The compiled compute stage and its entry point.
cache: Option<&'a Pc>
The cache which will be used and filled when compiling this pipeline
Trait Implementations§
source§impl<'a, Pl: Clone + DynPipelineLayout + ?Sized, M: Clone + DynShaderModule + ?Sized, Pc: Clone + DynPipelineCache + ?Sized> Clone for ComputePipelineDescriptor<'a, Pl, M, Pc>
impl<'a, Pl: Clone + DynPipelineLayout + ?Sized, M: Clone + DynShaderModule + ?Sized, Pc: Clone + DynPipelineCache + ?Sized> Clone for ComputePipelineDescriptor<'a, Pl, M, Pc>
source§fn clone(&self) -> ComputePipelineDescriptor<'a, Pl, M, Pc>
fn clone(&self) -> ComputePipelineDescriptor<'a, Pl, M, Pc>
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 moresource§impl<'a, Pl: Debug + DynPipelineLayout + ?Sized, M: Debug + DynShaderModule + ?Sized, Pc: Debug + DynPipelineCache + ?Sized> Debug for ComputePipelineDescriptor<'a, Pl, M, Pc>
impl<'a, Pl: Debug + DynPipelineLayout + ?Sized, M: Debug + DynShaderModule + ?Sized, Pc: Debug + DynPipelineCache + ?Sized> Debug for ComputePipelineDescriptor<'a, Pl, M, Pc>
Auto Trait Implementations§
impl<'a, Pl, M, Pc> Freeze for ComputePipelineDescriptor<'a, Pl, M, Pc>
impl<'a, Pl, M, Pc> RefUnwindSafe for ComputePipelineDescriptor<'a, Pl, M, Pc>
impl<'a, Pl, M, Pc> Send for ComputePipelineDescriptor<'a, Pl, M, Pc>
impl<'a, Pl, M, Pc> Sync for ComputePipelineDescriptor<'a, Pl, M, Pc>
impl<'a, Pl, M, Pc> Unpin for ComputePipelineDescriptor<'a, Pl, M, Pc>
impl<'a, Pl, M, Pc> UnwindSafe for ComputePipelineDescriptor<'a, Pl, M, Pc>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more