Struct nannou::image::dxt::DxtDecoder[][src]

pub struct DxtDecoder<R> where
    R: Read
{ /* fields omitted */ }

DXT decoder

Implementations

impl<R> DxtDecoder<R> where
    R: Read
[src]

pub fn new(
    r: R,
    width: u32,
    height: u32,
    variant: DXTVariant
) -> Result<DxtDecoder<R>, ImageError>
[src]

Create a new DXT decoder that decodes from the stream r. As DXT is often stored as raw buffers with the width/height somewhere else the width and height of the image need to be passed in width and height, as well as the DXT variant in variant. width and height are required to be powers of 2 and at least 4. otherwise an error will be returned

Trait Implementations

impl<'a, R> ImageDecoder<'a> for DxtDecoder<R> where
    R: 'a + Read
[src]

type Reader = DxtReader<R>

The type of reader produced by into_reader.

impl<'a, R> ImageDecoderExt<'a> for DxtDecoder<R> where
    R: 'a + Read + Seek
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for DxtDecoder<R> where
    R: RefUnwindSafe

impl<R> Send for DxtDecoder<R> where
    R: Send

impl<R> Sync for DxtDecoder<R> where
    R: Sync

impl<R> Unpin for DxtDecoder<R> where
    R: Unpin

impl<R> UnwindSafe for DxtDecoder<R> where
    R: UnwindSafe

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    T: Component + Float,
    D: AdaptFrom<S, Swp, Dwp, T>,
    Swp: WhitePoint,
    Dwp: WhitePoint
[src]

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

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

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

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast<T> for T

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SetParameter for T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,