-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update OpenImageIO to 2.5.13.1 and OpenEXR to 3.2.4 (#983)
* Fix Build Installer workflow so it fails when test results don't match 2.5.0 results. * Update OpenImageIO to 2.5.13.1 * Update OpenEXR to 3.2.4 Signed-off-by: Aaron Colwell <[email protected]>
- Loading branch information
Showing
12 changed files
with
122 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
...MINGW-packages/mingw-w64-openimageio/0000-workaround-ansidecl-h-PTR-define-conflict.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- a/src/include/OpenImageIO/typedesc.h.orig 2014-01-12 23:34:55.402417300 +0000 | ||
+++ b/src/include/OpenImageIO/typedesc.h 2014-01-12 23:35:17.974708400 +0000 | ||
@@ -47,6 +47,13 @@ | ||
struct OIIO_API TypeDesc { | ||
/// BASETYPE is a simple enum describing the base data types that | ||
/// correspond (mostly) to the C/C++ built-in types. | ||
+// ansidecl.h contains: | ||
+// #if defined (__STDC__) || defined(__cplusplus) .. || defined(_WIN32) | ||
+// "#define PTR void *" | ||
+#ifdef PTR | ||
+#define PTR_OLD_DEFINE PTR | ||
+#undef PTR | ||
+#endif | ||
enum BASETYPE { | ||
UNKNOWN, ///< unknown type | ||
NONE, ///< void/no type | ||
@@ -79,6 +79,10 @@ | ||
PTR, ///< A pointer value. | ||
LASTBASE | ||
}; | ||
+// Set PTR back what it previously contained. | ||
+#ifdef PTR_OLD_DEFINE | ||
+#define PTR PTR_OLD_DEFINE | ||
+#endif | ||
|
||
/// AGGREGATE describes whether our TypeDesc is a simple scalar of one | ||
/// of the BASETYPE's, or one of several simple aggregates. |
11 changes: 11 additions & 0 deletions
11
tools/MINGW-packages/mingw-w64-openimageio/0001-Fix-building-on-mingw-w64-aarch64.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/src/include/OpenImageIO/simd.h | ||
+++ b/src/include/OpenImageIO/simd.h | ||
@@ -77,7 +77,7 @@ | ||
|
||
#if defined(__CUDA_ARCH__) | ||
// Cuda -- don't include any of these headers | ||
-#elif defined(_WIN32) | ||
+#elif defined(_MSC_VER) || (defined(__MINGW32__) && !defined(__aarch64__)) | ||
# include <intrin.h> | ||
#elif defined(__GNUC__) && (defined(__x86_64__) || defined(__i386__)) || defined(__e2k__) | ||
# include <x86intrin.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
tools/MINGW-packages/mingw-w64-openimageio/oiio-2.1.10-boost.diff
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
tools/MINGW-packages/mingw-w64-openimageio/oiio-2.2.13.0-c++11.patch
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
tools/MINGW-packages/mingw-w64-openimageio/oiio-2.2.14-libraw.diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.