diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-12-14 19:39:04 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-12-14 19:39:04 +0000 |
| commit | 45c410c9ae0b1627d5b169646931d623d1cb0f8c (patch) | |
| tree | 8c30ace6cba565a208b95b5b7d86b00a297cca5d /src/lib | |
| parent | 6a68937320fa76ce213c648845abc73983fc1849 (diff) | |
Mark .exr as a valid image file.
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index 1f5b29101..637030e86 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -573,7 +573,7 @@ valid_image_file (boost::filesystem::path f) return ( ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp" || ext == ".tga" || ext == ".dpx" || - ext == ".j2c" || ext == ".j2k" || ext == ".jp2" + ext == ".j2c" || ext == ".j2k" || ext == ".jp2" || ext == ".exr" ); } |
