pub enum TileKind {
Volume,
Flat(NumSamples),
}
Expand description
The type of tile to check for with get_tile_size
.
Variants§
Volume
A volume or 3D image tile kind.
Flat(NumSamples)
A flat or 2D image tile kind, with the number of samples for MSAA.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TileKind
impl RefUnwindSafe for TileKind
impl Send for TileKind
impl Sync for TileKind
impl Unpin for TileKind
impl UnwindSafe for TileKind
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