pub trait ComputePassRawExt<'a> {
// Required methods
fn raw_pass(&mut self) -> &mut ComputePass<'static>;
fn graphics_context(&self) -> &GraphicsContext;
}Expand description
Extended access to ComputePass internals.
Required Methods§
Sourcefn raw_pass(&mut self) -> &mut ComputePass<'static>
fn raw_pass(&mut self) -> &mut ComputePass<'static>
Get raw access to the underlying wgpu compute pass.
Sourcefn graphics_context(&self) -> &GraphicsContext
fn graphics_context(&self) -> &GraphicsContext
Get the graphics context.