Struct image::hdr::Rgbe8Pixel [−][src]
Refer to wikipedia
Fields
c: [u8; 3]
Color components
e: u8
Exponent
Implementations
impl Rgbe8Pixel
[src]
pub fn to_hdr(self) -> Rgb<f32>
[src]
Converts RGBE8Pixel
into Rgb<f32>
linearly
pub fn to_ldr<T: Primitive + Zero>(self) -> Rgb<T>
[src]
Converts RGBE8Pixel
into Rgb<T>
with scale=1 and gamma=2.2
color_ldr = (color_hdr*scale)gamma
Panic
Panics when T::max_value()
cannot be represented as f32.
pub fn to_ldr_scale_gamma<T: Primitive + Zero>(
self,
scale: f32,
gamma: f32
) -> Rgb<T>
[src]
self,
scale: f32,
gamma: f32
) -> Rgb<T>
Converts RGBE8Pixel into Rgb
color_ldr = (color_hdr*scale)gamma
Panic
Panics when T::max_value() cannot be represented as f32. Panics when scale or gamma is NaN
Trait Implementations
impl Clone for Rgbe8Pixel
[src]
fn clone(&self) -> Rgbe8Pixel
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Rgbe8Pixel
[src]
impl Debug for Rgbe8Pixel
[src]
impl Default for Rgbe8Pixel
[src]
fn default() -> Rgbe8Pixel
[src]
impl Eq for Rgbe8Pixel
[src]
impl PartialEq<Rgbe8Pixel> for Rgbe8Pixel
[src]
fn eq(&self, other: &Rgbe8Pixel) -> bool
[src]
fn ne(&self, other: &Rgbe8Pixel) -> bool
[src]
impl StructuralEq for Rgbe8Pixel
[src]
impl StructuralPartialEq for Rgbe8Pixel
[src]
Auto Trait Implementations
impl RefUnwindSafe for Rgbe8Pixel
impl Send for Rgbe8Pixel
impl Sync for Rgbe8Pixel
impl Unpin for Rgbe8Pixel
impl UnwindSafe for Rgbe8Pixel
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,