Setup LZ4 decompressor but have it copy data for now

This commit is contained in:
Jaby
2022-12-27 22:06:14 +01:00
parent 948fc7d2a7
commit c7b9e4e301
3 changed files with 33 additions and 2 deletions

View File

@@ -21,6 +21,9 @@ namespace JabyEngine {
public:
LZ4Decompressor() = default;
LZ4Decompressor(uint8_t* dst_adr) : LZ4Decompressor() {
LZ4Decompressor::setup(dst_adr);
}
void setup(uint8_t* dst_adr);
void reset();