[][src]Struct webrender_api::ColorF

#[repr(C)]
pub struct ColorF { pub r: f32, pub g: f32, pub b: f32, pub a: f32, }

Represents RGBA screen colors with floating point numbers.

All components must be between 0.0 and 1.0. An alpha value of 1.0 is opaque while 0.0 is fully transparent.

Fields

r: f32g: f32b: f32a: f32

Methods

impl ColorF[src]

pub const BLACK: Self[src]

pub const TRANSPARENT: Self[src]

pub const WHITE: Self[src]

pub fn new(r: f32, g: f32, b: f32, a: f32) -> Self[src]

Constructs a new ColorF from its components.

pub fn scale_rgb(&self, scale: f32) -> Self[src]

Multiply the RGB channels (but not alpha) with a given factor.

pub fn scale_alpha(&self, scale: f32) -> Self[src]

pub fn to_array(&self) -> [f32; 4][src]

pub fn premultiplied(&self) -> PremultipliedColorF[src]

Multiply the RGB components with the alpha channel.

Trait Implementations

impl Clone for ColorF[src]

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

Performs copy-assignment from source. Read more

impl From<ColorF> for ColorU[src]

impl From<ColorU> for ColorF[src]

impl Copy for ColorF[src]

impl PartialEq<ColorF> for ColorF[src]

impl Debug for ColorF[src]

impl Serialize for ColorF[src]

impl<'de> Deserialize<'de> for ColorF[src]

impl MallocSizeOf for ColorF[src]

Auto Trait Implementations

impl Send for ColorF

impl Sync for ColorF

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.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]