Struct wgpu::RenderBundle
source · pub struct RenderBundle { /* private fields */ }
Expand description
Pre-prepared reusable bundle of GPU operations.
It only supports a handful of render commands, but it makes them reusable. Executing a
RenderBundle
is often more efficient than issuing the underlying commands manually.
It can be created by use of a RenderBundleEncoder
, and executed onto a CommandEncoder
using RenderPass::execute_bundles
.
Corresponds to WebGPU GPURenderBundle
.
Implementations§
source§impl RenderBundle
impl RenderBundle
Trait Implementations§
source§impl Debug for RenderBundle
impl Debug for RenderBundle
Auto Trait Implementations§
impl Freeze for RenderBundle
impl !RefUnwindSafe for RenderBundle
impl Send for RenderBundle
impl Sync for RenderBundle
impl Unpin for RenderBundle
impl !UnwindSafe for RenderBundle
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