Struct wgpu_profiler::scope::OwningScope [−][src]
pub struct OwningScope<'a, W: ProfilerCommandRecorder> { /* fields omitted */ }
Expand description
Scope that takes ownership of the encoder/pass. Calls end_scope on drop.
Implementations
pub fn scoped_render_pass<'b>(
&'b mut self,
label: &str,
device: &Device,
pass_descriptor: &RenderPassDescriptor<'b, '_>
) -> OwningScope<'b, RenderPass<'b>>
pub fn scoped_render_pass<'b>(
&'b mut self,
label: &str,
device: &Device,
pass_descriptor: &RenderPassDescriptor<'b, '_>
) -> OwningScope<'b, RenderPass<'b>>Start a render pass wrapped in an OwningScope.
pub fn scoped_compute_pass(
&mut self,
label: &str,
device: &Device,
pass_descriptor: &ComputePassDescriptor<'_>
) -> OwningScope<'_, ComputePass<'_>>
pub fn scoped_compute_pass(
&mut self,
label: &str,
device: &Device,
pass_descriptor: &ComputePassDescriptor<'_>
) -> OwningScope<'_, ComputePass<'_>>Start a compute pass wrapped in a OwningScope.
Trait Implementations
Auto Trait Implementations
impl<'a, W> !RefUnwindSafe for OwningScope<'a, W>impl<'a, W> Send for OwningScope<'a, W> where
W: Send, impl<'a, W> !Sync for OwningScope<'a, W>impl<'a, W> Unpin for OwningScope<'a, W> where
W: Unpin, impl<'a, W> !UnwindSafe for OwningScope<'a, W>