#[repr(C)]pub struct ComputePipelineCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: PipelineCreateFlags,
pub stage: PipelineShaderStageCreateInfo,
pub layout: PipelineLayout,
pub base_pipeline_handle: Pipeline,
pub base_pipeline_index: i32,
}Expand description
Fields
s_type: StructureTypep_next: *const c_voidflags: PipelineCreateFlagsstage: PipelineShaderStageCreateInfolayout: PipelineLayoutbase_pipeline_handle: Pipelinebase_pipeline_index: i32Implementations
sourceimpl ComputePipelineCreateInfo
impl ComputePipelineCreateInfo
pub fn builder<'a>() -> ComputePipelineCreateInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for ComputePipelineCreateInfo
impl Clone for ComputePipelineCreateInfo
sourcefn clone(&self) -> ComputePipelineCreateInfo
fn clone(&self) -> ComputePipelineCreateInfo
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
sourceimpl Debug for ComputePipelineCreateInfo
impl Debug for ComputePipelineCreateInfo
sourceimpl Default for ComputePipelineCreateInfo
impl Default for ComputePipelineCreateInfo
sourcefn default() -> ComputePipelineCreateInfo
fn default() -> ComputePipelineCreateInfo
Returns the “default value” for a type. Read more
impl Copy for ComputePipelineCreateInfo
Auto Trait Implementations
impl RefUnwindSafe for ComputePipelineCreateInfo
impl !Send for ComputePipelineCreateInfo
impl !Sync for ComputePipelineCreateInfo
impl Unpin for ComputePipelineCreateInfo
impl UnwindSafe for ComputePipelineCreateInfo
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