Unverified Commit 6de691e8 authored by acpaquette's avatar acpaquette Committed by GitHub
Browse files

Embree Extension Load Fix (#5075)

* Fixes failure to load BDS file if extension was all uppercase

* Updated changelog
parent 3a9ee5da
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@ release.
- Fixed bugs in downloadIsisData script [#5024](https://github.com/USGS-Astrogeology/ISIS3/issues/5024) 
- Fixed shadow shifting image by 2 pixels to the upper left corner. [#5035](https://github.com/USGS-Astrogeology/ISIS3/issues/5035)
- Fixed compiler warnings on ubuntu [#4911](https://github.com/USGS-Astrogeology/ISIS3/issues/4911)
- Fixes embree shape models not being from .BDS extension files [5064](https://github.com/USGS-Astrogeology/ISIS3/issues/5064)

## [7.1.0] - 2022-07-27

+1 −1
Original line number Diff line number Diff line
@@ -279,7 +279,7 @@ namespace Isis {
        throw IException(IException::Io, msg, _FILEINFO_);
      }
      // DSKs
      else if (file.extension() == "bds") {
      else if (file.extension().toLower() == "bds") {
        mesh = readDSK(file);
      }
      // Let PCL try to handle other formats (obj, ply, etc.)