pub fn decompress(
input: &[u8],
config: &EngineConfig,
cancel: &AtomicBool,
) -> Result<Vec<u8>>Expand description
Decompress a GPU-format archive back to the original bytes.
ยงErrors
CrushError::InvalidFormatif the archive header/footer is invalid.CrushError::Cancelledifcancelis set during processing.