pub struct DxtEncoder<W: Write> { /* private fields */ }
👎 Deprecated:
DXT support will be removed or reworked in a future version. Prefer the squish
crate instead. See https://github.com/image-rs/image/issues/1623
Expand description
DXT encoder
Implementations
sourceimpl<W: Write> DxtEncoder<W>
impl<W: Write> DxtEncoder<W>
sourcepub fn new(w: W) -> DxtEncoder<W>
👎 Deprecated: DXT support will be removed or reworked in a future version. Prefer the squish
crate instead. See https://github.com/image-rs/image/issues/1623
pub fn new(w: W) -> DxtEncoder<W>
DXT support will be removed or reworked in a future version. Prefer the squish
crate instead. See https://github.com/image-rs/image/issues/1623
Create a new encoder that writes its output to w
sourcepub fn encode(
self,
data: &[u8],
width: u32,
height: u32,
variant: DxtVariant
) -> ImageResult<()>
👎 Deprecated: DXT support will be removed or reworked in a future version. Prefer the squish
crate instead. See https://github.com/image-rs/image/issues/1623
pub fn encode(
self,
data: &[u8],
width: u32,
height: u32,
variant: DxtVariant
) -> ImageResult<()>
DXT support will be removed or reworked in a future version. Prefer the squish
crate instead. See https://github.com/image-rs/image/issues/1623
Encodes the image data data
that has dimensions width
and height
in DxtVariant
variant
data is assumed to be in variant.color_type()
Auto Trait Implementations
impl<W> RefUnwindSafe for DxtEncoder<W> where
W: RefUnwindSafe,
impl<W> Send for DxtEncoder<W> where
W: Send,
impl<W> Sync for DxtEncoder<W> where
W: Sync,
impl<W> Unpin for DxtEncoder<W> where
W: Unpin,
impl<W> UnwindSafe for DxtEncoder<W> where
W: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more