2020-10-14 04:40:52 +08:00
|
|
|
diff --git a/DirectXTex/DirectXTexEXR.cpp b/DirectXTex/DirectXTexEXR.cpp
|
2021-01-13 12:01:37 +08:00
|
|
|
index c78f1d1..e073539 100644
|
2020-10-14 04:40:52 +08:00
|
|
|
--- 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"
|
|
|
|
|
2021-01-13 12:01:37 +08:00
|
|
|
@@ -55,7 +55,7 @@ using namespace DirectX;
|
2020-10-14 04:40:52 +08:00
|
|
|
using PackedVector::XMHALF4;
|
|
|
|
|
2021-01-13 12:01:37 +08:00
|
|
|
// Comment out this anonymous namespace if you add the include of DirectXTexP.h above
|
|
|
|
-#ifdef WIN32
|
2020-10-14 04:40:52 +08:00
|
|
|
+#if 0
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
struct handle_closer { void operator()(HANDLE h) { assert(h != INVALID_HANDLE_VALUE); if (h) CloseHandle(h); } };
|