Struct glium::Blend [] [src]

pub struct Blend {
    pub color: BlendingFunction,
    pub alpha: BlendingFunction,
    pub constant_value: (f32, f32, f32, f32),
}

Blend effect that the GPU will use for blending.

Blending happens at the end of the rendering process, when the GPU wants to write the pixels over pixels that already exist in the framebuffer. The blending function allows you to choose how it should merge the two.

If you want to add transparent objects one over another, use Blend::alpha_blending().

Fields

color: BlendingFunction

The blending function for color channels.

alpha: BlendingFunction

The blending function for alpha channels.

constant_value: (f32, f32, f32, f32)

A constant color that can be used in the blending functions.

Methods

impl Blend
[src]

fn alpha_blending() -> Blend

Returns a blend effect to add transparent objects over others.

Trait Implementations

impl PartialEq for Blend
[src]

fn eq(&self, __arg_0: &Blend) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Blend) -> bool

This method tests for !=.

impl Debug for Blend
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Blend
[src]

fn clone(&self) -> Blend

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for Blend
[src]

impl Default for Blend
[src]

fn default() -> Blend

Returns the "default value" for a type. Read more