Skip to main content

BasisuEncoder

Struct BasisuEncoder 

Source
pub struct BasisuEncoder { /* private fields */ }
Available on crate features encoder and extra only.
Expand description

Encoder that used to compress SourceImage to basis universal ktx2 file.

Implementations§

Source§

impl BasisuEncoder

Source

pub fn new() -> Self

Create a encoder. Panic if basisu_encoder_init hasn’t been called.

Source

pub fn set_image( &mut self, image: SourceImage<'_>, ) -> Result<(), BasisuEncodeError>

Set the input image of the encoder and clear other image set before.

All the layers of the image will be set. To compress it as a cubemap or texture array, you will need to add flag to BasisuEncoderParams::flags_and_quality by calling BasisuEncoderParams::with_tex_type.

If you already have continuous data for the cubemap or texture array, this should be faster than Self::set_image_slice .

Source

pub fn clear_image(&mut self)

Clear the input image of encoder that was set.

Source

pub fn set_image_slice( &mut self, index: u32, image: SourceImage<'_>, ) -> Result<(), BasisuEncodeError>

Set a image slice at index. Other image set before is not cleared.

After set all the layers of the image, to compress it as a cubemap or texture array, you will need to add flag to BasisuEncoderParams::flags_and_quality by calling BasisuEncoderParams::with_tex_type.

The input image array layer count must be 1, otherwise an error will be returned.

If you already have continuous data for the cubemap or texture array, Self::set_image should faster.

Source

pub fn compress( &mut self, params: BasisuEncoderParams, ) -> Result<Vec<u8>, BasisuEncodeError>

Compress the inputted image and return the bytes of ktx2 file result.

Trait Implementations§

Source§

impl Default for BasisuEncoder

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Drop for BasisuEncoder

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

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> 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<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.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
Source§

impl<T> WasmNotSend for T

Source§

impl<T> WasmNotSendSync for T

Source§

impl<T> WasmNotSync for T