skia_safe

Enum ColorType

Source
#[repr(i32)]
pub enum ColorType {
Show 27 variants Unknown = 0, Alpha8 = 1, RGB565 = 2, ARGB4444 = 3, RGBA8888 = 4, RGB888x = 5, BGRA8888 = 6, RGBA1010102 = 7, BGRA1010102 = 8, RGB101010x = 9, BGR101010x = 10, BGR101010xXR = 11, BGRA10101010XR = 12, RGBA10x6 = 13, Gray8 = 14, RGBAF16Norm = 15, RGBAF16 = 16, RGBF16F16F16x = 17, RGBAF32 = 18, R8G8UNorm = 19, A16Float = 20, R16G16Float = 21, A16UNorm = 22, R16G16UNorm = 23, R16G16B16A16UNorm = 24, SRGBA8888 = 25, R8UNorm = 26,
}

Variants§

§

Unknown = 0

uninitialized

§

Alpha8 = 1

pixel with alpha in 8-bit byte

§

RGB565 = 2

pixel with 5 bits red, 6 bits green, 5 bits blue, in 16-bit word

§

ARGB4444 = 3

pixel with 4 bits for alpha, red, green, blue; in 16-bit word

§

RGBA8888 = 4

pixel with 8 bits for red, green, blue, alpha; in 32-bit word

§

RGB888x = 5

pixel with 8 bits each for red, green, blue; in 32-bit word

§

BGRA8888 = 6

pixel with 8 bits for blue, green, red, alpha; in 32-bit word

§

RGBA1010102 = 7

10 bits for red, green, blue; 2 bits for alpha; in 32-bit word

§

BGRA1010102 = 8

10 bits for blue, green, red; 2 bits for alpha; in 32-bit word

§

RGB101010x = 9

pixel with 10 bits each for red, green, blue; in 32-bit word

§

BGR101010x = 10

pixel with 10 bits each for blue, green, red; in 32-bit word

§

BGR101010xXR = 11

pixel with 10 bits each for blue, green, red; in 32-bit word, extended range

§

BGRA10101010XR = 12

pixel with 10 bits each for blue, green, red, alpha; in 64-bit word, extended range

§

RGBA10x6 = 13

pixel with 10 used bits (most significant) followed by 6 unused bits for red, green, blue, alpha; in 64-bit word

§

Gray8 = 14

pixel with grayscale level in 8-bit byte

§

RGBAF16Norm = 15

pixel with half floats in [0,1] for red, green, blue, alpha in 64-bit word

§

RGBAF16 = 16

pixel with half floats for red, green, blue, alpha in 64-bit word

§

RGBF16F16F16x = 17

pixel with half floats for red, green, blue; in 64-bit word

§

RGBAF32 = 18

pixel using C float for red, green, blue, alpha; in 128-bit word

§

R8G8UNorm = 19

pixel with a uint8_t for red and green

§

A16Float = 20

pixel with a half float for alpha

§

R16G16Float = 21

pixel with a half float for red and green

§

A16UNorm = 22

pixel with a little endian uint16_t for alpha

§

R16G16UNorm = 23

pixel with a little endian uint16_t for red and green

§

R16G16B16A16UNorm = 24

pixel with a little endian uint16_t for red, green, blue and alpha

§

SRGBA8888 = 25

§

R8UNorm = 26

Implementations§

Source§

impl ColorType

Source

pub const N32: Self = _

Source

pub const COUNT: usize = 27usize

Source

pub const fn n32() -> Self

👎Deprecated since 0.51.0: Use ColorType::N32
Source

pub fn bytes_per_pixel(self) -> usize

Source

pub fn is_always_opaque(self) -> bool

Source

pub fn validate_alpha_type(self, alpha_type: AlphaType) -> Option<AlphaType>

Trait Implementations§

Source§

impl Clone for ColorType

Source§

fn clone(&self) -> ColorType

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 ColorType

Source§

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

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

impl Hash for ColorType

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for ColorType

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for ColorType

Source§

impl Eq for ColorType

Source§

impl StructuralPartialEq for ColorType

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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<N, T> NativeTransmutableWrapper<N> for T
where T: NativeTransmutable<N>,

Source§

fn wrap(native: N) -> T

Source§

fn unwrap(self) -> N

Source§

fn inner(&self) -> &N

Source§

fn inner_mut(&mut self) -> &mut N

Source§

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

Source§

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>,

Source§

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>,

Source§

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.