Files
ctrff-pub/include/ctrff/lz11.hpp
tobid7 e4fa2202d2 Add LZ11 Decompression
- Add getetrs for bclim
- Correctly load all bclim data
- Fix RGB565ToRGBA converter to support all sizes possible
2026-01-03 01:54:30 +01:00

10 lines
275 B
C++

#pragma once
#include <ctrff/types.hpp>
namespace ctrff {
namespace LZ11 {
CTRFF_API std::vector<ctrff::u8> Compress(const std::vector<ctrff::u8>& in);
CTRFF_API std::vector<ctrff::u8> Decompress(const std::vector<ctrff::u8>& in);
} // namespace LZ11
} // namespace ctrff