pub struct TessellationOptions {
    pub feathering: bool,
    pub feathering_size_in_pixels: f32,
    pub coarse_tessellation_culling: bool,
    pub prerasterized_discs: bool,
    pub round_text_to_pixels: bool,
    pub debug_paint_clip_rects: bool,
    pub debug_paint_text_rects: bool,
    pub debug_ignore_clip_rects: bool,
    pub bezier_tolerance: f32,
    pub epsilon: f32,
    pub parallel_tessellation: bool,
    pub validate_meshes: bool,
}
Expand description

Tessellation quality options

Fields§

§feathering: bool

Use “feathering” to smooth out the edges of shapes as a form of anti-aliasing.

Feathering works by making each edge into a thin gradient into transparency. The size of this edge is controlled by Self::feathering_size_in_pixels.

This makes shapes appear smoother, but requires more triangles and is therefore slower.

This setting does not affect text.

Default: true.

§feathering_size_in_pixels: f32

The size of the feathering, in physical pixels.

The default, and suggested, value for this is 1.0. If you use a larger value, edges will appear blurry.

§coarse_tessellation_culling: bool

If true (default) cull certain primitives before tessellating them. This likely makes

§prerasterized_discs: bool

If true, small filled circled will be optimized by using pre-rasterized circled from the font atlas.

§round_text_to_pixels: bool

If true (default) align text to mesh grid. This makes the text sharper on most platforms.

§debug_paint_clip_rects: bool

Output the clip rectangles to be painted.

§debug_paint_text_rects: bool

Output the text-containing rectangles.

§debug_ignore_clip_rects: bool

If true, no clipping will be done.

§bezier_tolerance: f32

The maximum distance between the original curve and the flattened curve.

§epsilon: f32

The default value will be 1.0e-5, it will be used during float compare.

§parallel_tessellation: bool

If rayon feature is activated, should we parallelize tessellation?

§validate_meshes: bool

If true, invalid meshes will be silently ignored. If false, invalid meshes will cause a panic.

The default is false to save performance.

Trait Implementations§

source§

impl Clone for TessellationOptions

source§

fn clone(&self) -> TessellationOptions

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TessellationOptions

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for TessellationOptions

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl PartialEq for TessellationOptions

source§

fn eq(&self, other: &TessellationOptions) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for TessellationOptions

source§

impl StructuralPartialEq for TessellationOptions

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.