File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -159,10 +159,12 @@ Include `tinyexr.h` with `TINYEXR_IMPLEMENTATION` flag (do this only for **one**
159159* ` TINYEXR_USE_MINIZ ` Use miniz (default = 1). Please include ` zlib.h ` header before ` tinyexr.h ` if you disable miniz support(e.g. use system's zlib).
160160* ` TINYEXR_USE_STB_ZLIB ` Use zlib from ` stb_image[_write].h ` instead of miniz or the system's zlib (default = 0).
161161* ` TINYEXR_USE_PIZ ` Enable PIZ compression support (default = 1)
162- * ` TINYEXR_USE_ZFP ` Enable ZFP compression supoort (TinyEXR extension, default = 0)
163- * ` TINYEXR_USE_THREAD ` Enable threaded loading using C++11 thread (Requires C++11 compiler, default = 0)
162+ * ` TINYEXR_USE_ZFP ` Enable ZFP compression support (TinyEXR extension, default = 0)
163+ * ` TINYEXR_USE_THREAD ` Enable threaded loading/storing using C++11 thread (Requires C++11 compiler, default = 0)
164+ * Use ` TINYEXR_MAX_THREADS ` over 0 to use MIN(TINYEXR_MAX_THREADS,hardware_concurrency()) in stead off hardware_concurrency(). (default = 0)
164165* ` TINYEXR_USE_OPENMP ` Enable OpenMP threading support (default = 1 if ` _OPENMP ` is defined)
165166 * Use ` TINYEXR_USE_OPENMP=0 ` to force disable OpenMP code path even if OpenMP is available/enabled in the compiler.
167+ * ` TINYEXR_USE_COMPILER_FP16 ` Enable use of compiler provided FP16<>FP32 conversions when available (default = 0)
166168
167169### Quickly reading RGB(A) EXR file.
168170
You can’t perform that action at this time.
0 commit comments