Skip to content

Commit c98f547

Browse files
committed
Update TinyEXR to 1.0.12
TinyEXR is now header-only. Uses system zlib instead of miniz. Added detection for unsupported formats (tiled, multipart, deep). Changed default compression to ZIP for better file sizes. https://github.com/syoyo/tinyexr/releases/tag/v1.0.12
1 parent 4f9566d commit c98f547

File tree

9 files changed

+7309
-10110
lines changed

9 files changed

+7309
-10110
lines changed

docs/htmlsrc/guides/dependencies/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ <h1>3rd Party Dependencies</h1>
4242
<tr><td><a href="https://github.com/open-source-parsers/jsoncpp">jsoncpp</a></td><td>1.3.0</td><td><a href="https://github.com/open-source-parsers/jsoncpp/blob/master/LICENSE">MIT</a></td><td>JSON parsing (deprecated)</td></tr>
4343
<tr><td><a href="http://anttweakbar.sourceforge.net/">AntTweakBar</a></td><td>1.16</td><td><a href="http://anttweakbar.sourceforge.net/doc/tools:anttweakbar:license">zlib</a></td><td>Parameter manipulation GUI</td></tr>
4444
<tr><td><a href="http://glsdk.sourceforge.net/docs/html/group__module__glload.html">glload</a></td><td>0.5</td><td><a href="https://opensource.org/licenses/MIT">MIT</a></td><td>OpenGL function loading</td></tr>
45-
<tr><td><a href="https://github.com/syoyo/tinyexr">tinyexr</a></td><td>0.9.5</td><td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td><td>OpenEXR image read/write</td></tr>
45+
<tr><td><a href="https://github.com/syoyo/tinyexr">tinyexr</a></td><td>1.0.12</td><td><a href="https://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause</a></td><td>OpenEXR image read/write</td></tr>
4646
<tr><td><a href="https://git.xiph.org/?p=vorbis.git">libvorbis</a></td><td>1.3.4</td><td><a href="https://git.xiph.org/?p=vorbis.git;a=blob_plain;f=COPYING;hb=HEAD">BSD</a></td><td>Ogg Vorbis audio read/write</td></tr>
4747
<tr><td><a href="https://github.com/gulrak/filesystem">gulrak-filesystem</a></td><td>1.3.0</td><td><a href="https://github.com/gulrak/filesystem/blob/master/LICENSE">MIT</a></td><td>Filesystem substitution</td></tr>
4848
<tr><td><a href="https://github.com/avaneev/r8brain-free-src">r8brain</a></td><td>1.5</td><td><a href="https://opensource.org/licenses/MIT">MIT</a></td><td>Sample rate conversion</td></tr>

include/cinder/ImageFileTinyExr.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727

2828
#define USE_PLANAR_CHANNELS 1
2929

30-
typedef struct _EXRVersion EXRVersion;
31-
typedef struct _EXRHeader EXRHeader;
32-
typedef struct _EXRImage EXRImage;
30+
typedef struct TEXRVersion EXRVersion;
31+
typedef struct TEXRHeader EXRHeader;
32+
typedef struct TEXRImage EXRImage;
3333

3434
namespace cinder {
3535

0 commit comments

Comments
 (0)