From 798d76f4c7018174e58702fb06a042dc8c84f0be Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 7 Feb 2019 18:28:06 +0100 Subject: data_compression: Move LZ4 compression from video_core/gl_shader_disk_cache to common/data_compression --- src/common/data_compression.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/common/data_compression.h (limited to 'src/common/data_compression.h') diff --git a/src/common/data_compression.h b/src/common/data_compression.h new file mode 100644 index 000000000..70878b8d9 --- /dev/null +++ b/src/common/data_compression.h @@ -0,0 +1,17 @@ +// Copyright 2019 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include + +#include "common/common_types.h" + +namespace Compression { + +std::vector CompressDataLZ4(const u8* source, std::size_t source_size); + +std::vector DecompressDataLZ4(const std::vector& compressed, std::size_t uncompressed_size); + +} // namespace Compression \ No newline at end of file -- cgit v1.2.3