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