[][src]Struct fae::renderer::DrawCallParameters

pub struct DrawCallParameters {
    pub image: Option<Image>,
    pub shaders: Option<Shaders>,
    pub alpha_blending: bool,
    pub minification_smoothing: bool,
    pub magnification_smoothing: bool,
}

Options which set capabilities, restrictions and resources for draw calls. Used in Renderer::create_draw_call.

Fields

image: Option<Image>

The texture used when drawing with this draw call.

shaders: Option<Shaders>

The shaders used when drawing with this draw call.

alpha_blending: bool

Whether to blend with previously drawn pixels when drawing over them, or just replace the color. (In OpenGL terms: whether GL_BLEND is enabled.)

minification_smoothing: bool

When drawing quads that are smaller than the texture provided, use linear (true) or nearest neighbor (false) smoothing when scaling? (Linear is probably always better.)

magnification_smoothing: bool

When drawing quads that are larger than the texture provided, use linear (true) or nearest neighbor (false) smoothing when scaling? (Tip: for pixel art or other textures that don't suffer from jaggies, set this to false for the intended look.)

Trait Implementations

impl Default for DrawCallParameters[src]

impl Clone for DrawCallParameters[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DrawCallParameters[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.