mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 08:39:01 +08:00
3fcfccf0ca
* Update for directx-headers release 1.0.1 * DirectXMesh, DirectXTex, and UVAtlas now support Linux * Updated hashes and bins * Fix linux builds * Fixed directxtex[openexr] for x64-linux * Removed stray file * directxmath hot-fix for GCC arm64 * Fixed hash * Hash fix again * x64-linux CIs use GCC 7, but I require GCC 9 * Added warning message for GCC 9 requirement
23 lines
782 B
Diff
23 lines
782 B
Diff
diff --git a/DirectXTex/DirectXTexEXR.cpp b/DirectXTex/DirectXTexEXR.cpp
|
|
index c78f1d1..e073539 100644
|
|
--- a/DirectXTex/DirectXTexEXR.cpp
|
|
+++ b/DirectXTex/DirectXTexEXR.cpp
|
|
@@ -8,7 +8,7 @@
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
//Uncomment if you add DirectXTexEXR to your copy of the DirectXTex library
|
|
-//#include "DirectXTexP.h"
|
|
+#include "DirectXTexP.h"
|
|
|
|
#include "DirectXTexEXR.h"
|
|
|
|
@@ -55,7 +55,7 @@ using namespace DirectX;
|
|
using PackedVector::XMHALF4;
|
|
|
|
// Comment out this anonymous namespace if you add the include of DirectXTexP.h above
|
|
-#ifdef WIN32
|
|
+#if 0
|
|
namespace
|
|
{
|
|
struct handle_closer { void operator()(HANDLE h) { assert(h != INVALID_HANDLE_VALUE); if (h) CloseHandle(h); } };
|