Struct wgpu_profiler::scope::Scope [−][src]
pub struct Scope<'a, W: ProfilerCommandRecorder> { /* fields omitted */ }
Expand description
Scope that takes a (mutable) reference to 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 a 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 Scope<'a, W>impl<'a, W> !UnwindSafe for Scope<'a, W>