pub struct ProbeBakeQueue { /* private fields */ }Expand description
Tracks how far a staggered probe bake has progressed. Baking every probe on one frame stalls proportionally to the probe count; instead the renderer bakes a bounded budget per frame and walks this cursor, so the load cost is spread and unbaked probes fall back to the sky until their turn. Indices are handed out in order so the baked cube array stays aligned with the placement list.
Implementations§
Trait Implementations§
Source§impl Clone for ProbeBakeQueue
impl Clone for ProbeBakeQueue
Source§fn clone(&self) -> ProbeBakeQueue
fn clone(&self) -> ProbeBakeQueue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProbeBakeQueue
Source§impl Debug for ProbeBakeQueue
impl Debug for ProbeBakeQueue
impl Eq for ProbeBakeQueue
Source§impl PartialEq for ProbeBakeQueue
impl PartialEq for ProbeBakeQueue
impl StructuralPartialEq for ProbeBakeQueue
Auto Trait Implementations§
impl Freeze for ProbeBakeQueue
impl RefUnwindSafe for ProbeBakeQueue
impl Send for ProbeBakeQueue
impl Sync for ProbeBakeQueue
impl Unpin for ProbeBakeQueue
impl UnsafeUnpin for ProbeBakeQueue
impl UnwindSafe for ProbeBakeQueue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.