diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-27 01:44:22 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-27 01:44:22 +0000 |
| commit | a77db60fed81e8e6492806d82d50ef570f70706b (patch) | |
| tree | f3345c20a74af12d3aecd99cafaf36f376384cbf /Common/interface | |
| parent | Renamed .h -> .hpp in DiligentCoreAPITest project (diff) | |
| download | DiligentCore-a77db60fed81e8e6492806d82d50ef570f70706b.tar.gz DiligentCore-a77db60fed81e8e6492806d82d50ef570f70706b.zip | |
Renamed platform headers .h -> .hpp
Diffstat (limited to 'Common/interface')
| -rw-r--r-- | Common/interface/Align.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/FileWrapper.hpp | 4 | ||||
| -rw-r--r-- | Common/interface/HashUtils.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/LockHelper.hpp | 4 | ||||
| -rw-r--r-- | Common/interface/RefCntAutoPtr.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/RefCountedObjectImpl.hpp | 4 | ||||
| -rw-r--r-- | Common/interface/STDAllocator.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/StringPool.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/StringTools.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/ThreadSignal.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/UniqueIdentifier.hpp | 2 | ||||
| -rw-r--r-- | Common/interface/ValidatedCast.hpp | 2 |
12 files changed, 15 insertions, 15 deletions
diff --git a/Common/interface/Align.hpp b/Common/interface/Align.hpp index 9d430f44..f80dd690 100644 --- a/Common/interface/Align.hpp +++ b/Common/interface/Align.hpp @@ -30,7 +30,7 @@ /// \file /// Alignment utilities -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" namespace Diligent { diff --git a/Common/interface/FileWrapper.hpp b/Common/interface/FileWrapper.hpp index 050e1a0e..2f459bc7 100644 --- a/Common/interface/FileWrapper.hpp +++ b/Common/interface/FileWrapper.hpp @@ -28,8 +28,8 @@ #pragma once #include "../../Primitives/interface/Errors.hpp" -#include "../../Platforms/Basic/interface/DebugUtilities.h" -#include "../../Platforms/interface/FileSystem.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" +#include "../../Platforms/interface/FileSystem.hpp" namespace Diligent { diff --git a/Common/interface/HashUtils.hpp b/Common/interface/HashUtils.hpp index f763aa62..a2f998a6 100644 --- a/Common/interface/HashUtils.hpp +++ b/Common/interface/HashUtils.hpp @@ -32,7 +32,7 @@ #include <cstring> #include "../../Primitives/interface/Errors.hpp" -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" #define LOG_HASH_CONFLICTS 1 diff --git a/Common/interface/LockHelper.hpp b/Common/interface/LockHelper.hpp index 97296e7e..f8606402 100644 --- a/Common/interface/LockHelper.hpp +++ b/Common/interface/LockHelper.hpp @@ -27,8 +27,8 @@ #pragma once -#include "../../Platforms/interface/Atomics.h" -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/interface/Atomics.hpp" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" namespace ThreadingTools { diff --git a/Common/interface/RefCntAutoPtr.hpp b/Common/interface/RefCntAutoPtr.hpp index 29883692..c8f42cf0 100644 --- a/Common/interface/RefCntAutoPtr.hpp +++ b/Common/interface/RefCntAutoPtr.hpp @@ -28,7 +28,7 @@ #pragma once #include "../../Primitives/interface/Object.h" -#include "../../Platforms/interface/Atomics.h" +#include "../../Platforms/interface/Atomics.hpp" #include "ValidatedCast.hpp" #include "RefCountedObjectImpl.hpp" diff --git a/Common/interface/RefCountedObjectImpl.hpp b/Common/interface/RefCountedObjectImpl.hpp index 6afbe0c7..4870fdbf 100644 --- a/Common/interface/RefCountedObjectImpl.hpp +++ b/Common/interface/RefCountedObjectImpl.hpp @@ -32,8 +32,8 @@ #include "../../Primitives/interface/Object.h" #include "../../Primitives/interface/MemoryAllocator.h" -#include "../../Platforms/interface/Atomics.h" -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/interface/Atomics.hpp" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" #include "LockHelper.hpp" #include "ValidatedCast.hpp" diff --git a/Common/interface/STDAllocator.hpp b/Common/interface/STDAllocator.hpp index 66b4df21..5428b249 100644 --- a/Common/interface/STDAllocator.hpp +++ b/Common/interface/STDAllocator.hpp @@ -33,7 +33,7 @@ #include "../../Primitives/interface/BasicTypes.h" #include "../../Primitives/interface/MemoryAllocator.h" -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" namespace Diligent { diff --git a/Common/interface/StringPool.hpp b/Common/interface/StringPool.hpp index 60f71a3a..b5e2f9d5 100644 --- a/Common/interface/StringPool.hpp +++ b/Common/interface/StringPool.hpp @@ -33,7 +33,7 @@ #include <cstring> #include "../../Primitives/interface/BasicTypes.h" #include "../../Primitives/interface/MemoryAllocator.h" -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" namespace Diligent { diff --git a/Common/interface/StringTools.hpp b/Common/interface/StringTools.hpp index 6b775891..9a114db1 100644 --- a/Common/interface/StringTools.hpp +++ b/Common/interface/StringTools.hpp @@ -34,7 +34,7 @@ #include <cctype> #include <string.h> -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" namespace Diligent { diff --git a/Common/interface/ThreadSignal.hpp b/Common/interface/ThreadSignal.hpp index 6f6b2453..764b9612 100644 --- a/Common/interface/ThreadSignal.hpp +++ b/Common/interface/ThreadSignal.hpp @@ -31,7 +31,7 @@ #include <condition_variable> #include <atomic> -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" namespace ThreadingTools { diff --git a/Common/interface/UniqueIdentifier.hpp b/Common/interface/UniqueIdentifier.hpp index 10dfeb93..15ceebdd 100644 --- a/Common/interface/UniqueIdentifier.hpp +++ b/Common/interface/UniqueIdentifier.hpp @@ -28,7 +28,7 @@ #pragma once #include "../../Primitives/interface/BasicTypes.h" -#include "../../Platforms/interface/Atomics.h" +#include "../../Platforms/interface/Atomics.hpp" namespace Diligent { diff --git a/Common/interface/ValidatedCast.hpp b/Common/interface/ValidatedCast.hpp index e812457a..eb528274 100644 --- a/Common/interface/ValidatedCast.hpp +++ b/Common/interface/ValidatedCast.hpp @@ -27,7 +27,7 @@ #pragma once -#include "../../Platforms/Basic/interface/DebugUtilities.h" +#include "../../Platforms/Basic/interface/DebugUtilities.hpp" template <typename DstType, typename SrcType> DstType* ValidatedCast(SrcType* Ptr) |
