Enum avrox_display::gfx::RenderOrderingHint
source · pub enum RenderOrderingHint {
Rows,
Columns,
Random,
}
Expand description
Hints that tell a component the order in which a device will typically ask for pixel data. This may be used by the graphics command to optimise how it retrieves, calculates or caches data.
Variants§
Rows
The device typically renders row-by-row
Columns
The device typically renders column-by-column
Random
No device follows no rhyme or reason
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RenderOrderingHint
impl RefUnwindSafe for RenderOrderingHint
impl Send for RenderOrderingHint
impl Sync for RenderOrderingHint
impl Unpin for RenderOrderingHint
impl UnwindSafe for RenderOrderingHint
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