#[repr(C)]pub struct msdfgen_GeneratorConfig {
pub overlapSupport: bool,
}Expand description
The configuration of the distance field generator algorithm.
Fields§
§overlapSupport: boolSpecifies whether to use the version of the algorithm that supports overlapping contours with the same winding. May be set to false to improve performance when no such contours are present.
Trait Implementations§
Source§impl Clone for msdfgen_GeneratorConfig
impl Clone for msdfgen_GeneratorConfig
Source§fn clone(&self) -> msdfgen_GeneratorConfig
fn clone(&self) -> msdfgen_GeneratorConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for msdfgen_GeneratorConfig
impl Debug for msdfgen_GeneratorConfig
impl Copy for msdfgen_GeneratorConfig
Auto Trait Implementations§
impl Freeze for msdfgen_GeneratorConfig
impl RefUnwindSafe for msdfgen_GeneratorConfig
impl Send for msdfgen_GeneratorConfig
impl Sync for msdfgen_GeneratorConfig
impl Unpin for msdfgen_GeneratorConfig
impl UnwindSafe for msdfgen_GeneratorConfig
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