Struct image::codecs::dxt::DxtDecoder [−][src]
pub struct DxtDecoder<R: Read> { /* fields omitted */ }
DXT decoder
Implementations
impl<R: Read> DxtDecoder<R>
[src]
impl<R: Read> DxtDecoder<R>
[src]pub fn new(
r: R,
width: u32,
height: u32,
variant: DXTVariant
) -> Result<DxtDecoder<R>, ImageError>
[src]
r: R,
width: u32,
height: u32,
variant: DXTVariant
) -> Result<DxtDecoder<R>, ImageError>
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: 'a + Read> ImageDecoder<'a> for DxtDecoder<R>
[src]
impl<'a, R: 'a + Read> ImageDecoder<'a> for DxtDecoder<R>
[src]type Reader = DxtReader<R>
The type of reader produced by into_reader
.
fn dimensions(&self) -> (u32, u32)
[src]
fn color_type(&self) -> ColorType
[src]
fn scanline_bytes(&self) -> u64
[src]
fn into_reader(self) -> ImageResult<Self::Reader>
[src]
fn read_image(self, buf: &mut [u8]) -> ImageResult<()>
[src]
fn original_color_type(&self) -> ExtendedColorType
[src]
fn total_bytes(&self) -> u64
[src]
fn read_image_with_progress<F: Fn(Progress)>(
self,
buf: &mut [u8],
progress_callback: F
) -> ImageResult<()>
[src]
self,
buf: &mut [u8],
progress_callback: F
) -> ImageResult<()>
impl<'a, R: 'a + Read + Seek> ImageDecoderExt<'a> for DxtDecoder<R>
[src]
impl<'a, R: 'a + Read + Seek> ImageDecoderExt<'a> for DxtDecoder<R>
[src]Auto Trait Implementations
impl<R> RefUnwindSafe for DxtDecoder<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for DxtDecoder<R> where
R: Send,
R: Send,
impl<R> Sync for DxtDecoder<R> where
R: Sync,
R: Sync,
impl<R> Unpin for DxtDecoder<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for DxtDecoder<R> where
R: UnwindSafe,
R: UnwindSafe,