mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:59:05 +08:00
94b089b7c1
* Update to 3.1.5 * Add feature 'tools' * ilmbase is now imath * [theia] Use openimageio cmake config * [freeimage] Use OpenEXR 3 and Imath * [opencv4] Use upstream's OpenEXR 3 support * [opencv3] Use upstream's OpenEXR 3 support * [opencv2] Use OpenEXR 3 and Imath * [osg] Use OpenEXR 3 * [openvdb] Use Imath, enable OpenEXR * [pangolin] Use OpenEXR 3 * [directxtex] Use OpenEXR 3 * [uvatlas] Disable /guard:ehcont when directxtex uses openexr * Update versions Co-authored-by: chausner <chausner@users.noreply.github.com>
73 lines
2.1 KiB
Diff
73 lines
2.1 KiB
Diff
diff --git a/Source/FreeImage/PluginEXR.cpp b/Source/FreeImage/PluginEXR.cpp
|
|
index b286430..82b3b72 100644
|
|
--- a/Source/FreeImage/PluginEXR.cpp
|
|
+++ b/Source/FreeImage/PluginEXR.cpp
|
|
@@ -28,16 +28,16 @@
|
|
#pragma warning (disable : 4800) // ImfVersion.h - 'const int' : forcing value to bool 'true' or 'false' (performance warning)
|
|
#endif
|
|
|
|
-#include "../OpenEXR/IlmImf/ImfIO.h"
|
|
-#include "../OpenEXR/Iex/Iex.h"
|
|
-#include "../OpenEXR/IlmImf/ImfOutputFile.h"
|
|
-#include "../OpenEXR/IlmImf/ImfInputFile.h"
|
|
-#include "../OpenEXR/IlmImf/ImfRgbaFile.h"
|
|
-#include "../OpenEXR/IlmImf/ImfChannelList.h"
|
|
-#include "../OpenEXR/IlmImf/ImfRgba.h"
|
|
-#include "../OpenEXR/IlmImf/ImfArray.h"
|
|
-#include "../OpenEXR/IlmImf/ImfPreviewImage.h"
|
|
-#include "../OpenEXR/Half/half.h"
|
|
+#include <OpenEXR/ImfIO.h>
|
|
+#include <OpenEXR/Iex.h>
|
|
+#include <OpenEXR/ImfOutputFile.h>
|
|
+#include <OpenEXR/ImfInputFile.h>
|
|
+#include <OpenEXR/ImfRgbaFile.h>
|
|
+#include <OpenEXR/ImfChannelList.h>
|
|
+#include <OpenEXR/ImfRgba.h>
|
|
+#include <OpenEXR/ImfArray.h>
|
|
+#include <OpenEXR/ImfPreviewImage.h>
|
|
+#include <Imath/half.h>
|
|
|
|
|
|
// ==========================================================
|
|
@@ -66,11 +66,11 @@ public:
|
|
return ((unsigned)n != _io->read_proc(c, 1, n, _handle));
|
|
}
|
|
|
|
- virtual Imath::Int64 tellg() {
|
|
+ virtual uint64_t tellg() {
|
|
return _io->tell_proc(_handle);
|
|
}
|
|
|
|
- virtual void seekg(Imath::Int64 pos) {
|
|
+ virtual void seekg(uint64_t pos) {
|
|
_io->seek_proc(_handle, (unsigned)pos, SEEK_SET);
|
|
}
|
|
|
|
@@ -100,11 +100,11 @@ public:
|
|
}
|
|
}
|
|
|
|
- virtual Imath::Int64 tellp() {
|
|
+ virtual uint64_t tellp() {
|
|
return _io->tell_proc(_handle);
|
|
}
|
|
|
|
- virtual void seekp(Imath::Int64 pos) {
|
|
+ virtual void seekp(uint64_t pos) {
|
|
_io->seek_proc(_handle, (unsigned)pos, SEEK_SET);
|
|
}
|
|
};
|
|
diff --git a/Source/FreeImage/PluginTIFF.cpp b/Source/FreeImage/PluginTIFF.cpp
|
|
index 562fdd7..ce12649 100644
|
|
--- a/Source/FreeImage/PluginTIFF.cpp
|
|
+++ b/Source/FreeImage/PluginTIFF.cpp
|
|
@@ -39,7 +39,7 @@
|
|
#include "Utilities.h"
|
|
#include <tiffio.h>
|
|
#include "../Metadata/FreeImageTag.h"
|
|
-#include "../OpenEXR/Half/half.h"
|
|
+#include <Imath/half.h>
|
|
|
|
#include "FreeImageIO.h"
|
|
#include "PSDParser.h"
|