2021-04-10 00:54:41 +08:00
|
|
|
diff --git a/DirectXTexEXR.cpp b/DirectXTexEXR.cpp
|
[directxmath, directxtex, directxmesh, directxtk, directxtk12, uvatlas] ports updated (#23332)
* [directxmath, directxmesh, directxtex, directxtk, directxtk12, uvatlas] ports updated to February 2022 release
* Update baseline
* Updated directxmath to use non-deprecated functions
* Refresh baseline
* Updated for master-to-main rename
* Refresh baseline
* Remove en-us specific doc link
* Refresh version baseline
2022-03-03 06:58:20 +08:00
|
|
|
index 17bd171..825cfe4 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"
|
|
|
|
|
[directxmath, directxtex, directxmesh, directxtk, directxtk12, uvatlas] ports updated (#23332)
* [directxmath, directxmesh, directxtex, directxtk, directxtk12, uvatlas] ports updated to February 2022 release
* Update baseline
* Updated directxmath to use non-deprecated functions
* Refresh baseline
* Updated for master-to-main rename
* Refresh baseline
* Remove en-us specific doc link
* Refresh version baseline
2022-03-03 06:58:20 +08:00
|
|
|
@@ -57,7 +57,7 @@ using namespace DirectX;
|
2020-10-14 04:40:52 +08:00
|
|
|
using PackedVector::XMHALF4;
|
|
|
|
|
2021-04-10 00:54:41 +08:00
|
|
|
// Comment out this first anonymous namespace if you add the include of DirectXTexP.h above
|
2021-01-13 12:01:37 +08:00
|
|
|
-#ifdef WIN32
|
2020-10-14 04:40:52 +08:00
|
|
|
+#if 0
|
|
|
|
namespace
|
|
|
|
{
|
[directxmath, directxtex, directxmesh, directxtk, directxtk12, uvatlas] ports updated (#23332)
* [directxmath, directxmesh, directxtex, directxtk, directxtk12, uvatlas] ports updated to February 2022 release
* Update baseline
* Updated directxmath to use non-deprecated functions
* Refresh baseline
* Updated for master-to-main rename
* Refresh baseline
* Remove en-us specific doc link
* Refresh version baseline
2022-03-03 06:58:20 +08:00
|
|
|
struct handle_closer { void operator()(HANDLE h) noexcept { assert(h != INVALID_HANDLE_VALUE); if (h) CloseHandle(h); } };
|