pub struct PreparedFrame {
pub batches: Vec<DrawBatch>,
pub culled_count: usize,
}Expand description
The output of a single batch call.
Fields§
§batches: Vec<DrawBatch>Merged batches in sorted draw order.
culled_count: usizeNumber of commands that were dropped by visibility culling.
Auto Trait Implementations§
impl Freeze for PreparedFrame
impl RefUnwindSafe for PreparedFrame
impl Send for PreparedFrame
impl Sync for PreparedFrame
impl Unpin for PreparedFrame
impl UnsafeUnpin for PreparedFrame
impl UnwindSafe for PreparedFrame
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