pub struct RayTracingPipelineCreateInfoKHRBuilder<'a> { /* private fields */ }Expand description
Builder for RayTracingPipelineCreateInfoKHR with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> RayTracingPipelineCreateInfoKHRBuilder<'a>
pub fn flags(self, value: PipelineCreateFlags) -> Self
pub fn stages(self, slice: &'a [PipelineShaderStageCreateInfo]) -> Self
pub fn groups(self, slice: &'a [RayTracingShaderGroupCreateInfoKHR]) -> Self
pub fn max_pipeline_ray_recursion_depth(self, value: u32) -> Self
pub fn library_info(self, value: &'a PipelineLibraryCreateInfoKHR) -> Self
pub fn library_interface( self, value: &'a RayTracingPipelineInterfaceCreateInfoKHR, ) -> Self
pub fn dynamic_state(self, value: &'a PipelineDynamicStateCreateInfo) -> Self
pub fn layout(self, value: PipelineLayout) -> Self
pub fn base_pipeline_handle(self, value: Pipeline) -> Self
pub fn base_pipeline_index(self, value: i32) -> Self
Sourcepub fn push_next<T: ExtendsRayTracingPipelineCreateInfoKHR>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsRayTracingPipelineCreateInfoKHR>( self, next: &'a mut T, ) -> Self
Prepend a struct to the pNext chain. See RayTracingPipelineCreateInfoKHR’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> Deref for RayTracingPipelineCreateInfoKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> RefUnwindSafe for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> !Send for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> !Sync for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> Unpin for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> UnsafeUnpin for RayTracingPipelineCreateInfoKHRBuilder<'a>
impl<'a> UnwindSafe for RayTracingPipelineCreateInfoKHRBuilder<'a>
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