Files
filament/third_party/tinyexr/tnt
Philip Rideout 4665805d81 Minor improvements to EXR decoding. (#177)
See also #176.

This closes #166.
2018-08-28 14:38:54 -07:00
..
2018-08-14 12:55:04 -07:00
2018-08-03 10:38:22 -07:00

To update tinyexr grab the latest from GitHub and remove the following directories to save some disk space:

  • examples
  • jni
  • test

Make sure the LICENSE file remains and is up to date.

We also made a small change to LoadEXRFromMemory by adding this right after it calls LoadEXRImageFromMemory:

// This utility function does not yet support tiled images.
if (exr_image.tiles) {
    ret = TINYEXR_ERROR_UNSUPPORTED_FORMAT;
    tinyexr::SetErrorMessage("Tiled EXR images are not yet supported", err);
    return ret;
}