Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/miniz
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-01-26 16:55:58 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-01-27 11:18:17 +0300
commit7a6c0384802b8f368048b36bba3e09b72ab9055f (patch)
tree8c84ff1cc61738ca36e6a606361f06040b995085 /src/miniz
parentef424ad10125a85a07bf239b36153fbcac7d6221 (diff)
Refactoring of 3MF file export to use the new homebrewed miniz
streaming interface. This shall fix high memory consumption and crashes when exporting extremely large 3MF files.
Diffstat (limited to 'src/miniz')
-rw-r--r--src/miniz/README-Prusa.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/miniz/README-Prusa.txt b/src/miniz/README-Prusa.txt
index 494227c6b..83b72cda3 100644
--- a/src/miniz/README-Prusa.txt
+++ b/src/miniz/README-Prusa.txt
@@ -2,6 +2,8 @@ This library is based on miniz 2.1.0 - amalgamated version.
----------------------------------------------------------------
+PrusaResearch (Vojtech) homebrewed the following:
+
mz_zip_writer_add_staged_open(), mz_zip_writer_add_staged_data() and mz_zip_writer_add_staged_finish()
were derived from mz_zip_writer_add_read_buf_callback() by splitting it and passing a new
mz_zip_writer_staged_context between them.