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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)