summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-01-26 23:01:50 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-01-26 23:01:50 +0000
commit55f125b67aa285631e1d7d8e398c460925f88c0c (patch)
treee41c819c4952b4b26c7e02b8021d9d65441c5ff5 /Graphics/GraphicsEngine
parentRenamed .h -> .hpp in GraphicsEngineVulkan project (diff)
downloadDiligentCore-55f125b67aa285631e1d7d8e398c460925f88c0c.tar.gz
DiligentCore-55f125b67aa285631e1d7d8e398c460925f88c0c.zip
Renamed .h -> .hpp in Common and HLSL2GLSLConverterLib projects
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/include/BufferBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/BufferViewBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/DeviceContextBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/DeviceObjectBase.hpp4
-rw-r--r--Graphics/GraphicsEngine/include/FenceBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/PipelineStateBase.hpp4
-rw-r--r--Graphics/GraphicsEngine/include/QueryBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/RenderDeviceBase.hpp6
-rw-r--r--Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp4
-rw-r--r--Graphics/GraphicsEngine/include/ShaderBase.hpp4
-rw-r--r--Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/SwapChainBase.hpp4
-rw-r--r--Graphics/GraphicsEngine/include/TextureBase.hpp4
-rw-r--r--Graphics/GraphicsEngine/include/TextureViewBase.hpp2
-rw-r--r--Graphics/GraphicsEngine/include/pch.h4
-rw-r--r--Graphics/GraphicsEngine/src/DefaultShaderSourceStreamFactory.cpp4
-rw-r--r--Graphics/GraphicsEngine/src/EngineMemory.cpp2
19 files changed, 29 insertions, 29 deletions
diff --git a/Graphics/GraphicsEngine/include/BufferBase.hpp b/Graphics/GraphicsEngine/include/BufferBase.hpp
index a40978f7..616ef72d 100644
--- a/Graphics/GraphicsEngine/include/BufferBase.hpp
+++ b/Graphics/GraphicsEngine/include/BufferBase.hpp
@@ -34,7 +34,7 @@
#include "GraphicsTypes.h"
#include "DeviceObjectBase.hpp"
#include "GraphicsAccessories.hpp"
-#include "STDAllocator.h"
+#include "STDAllocator.hpp"
#include <memory>
namespace Diligent
diff --git a/Graphics/GraphicsEngine/include/BufferViewBase.hpp b/Graphics/GraphicsEngine/include/BufferViewBase.hpp
index 37e80756..13c4610b 100644
--- a/Graphics/GraphicsEngine/include/BufferViewBase.hpp
+++ b/Graphics/GraphicsEngine/include/BufferViewBase.hpp
@@ -33,7 +33,7 @@
#include "BufferView.h"
#include "DeviceObjectBase.hpp"
#include "GraphicsTypes.h"
-#include "RefCntAutoPtr.h"
+#include "RefCntAutoPtr.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/DeviceContextBase.hpp b/Graphics/GraphicsEngine/include/DeviceContextBase.hpp
index 87604f84..611c591c 100644
--- a/Graphics/GraphicsEngine/include/DeviceContextBase.hpp
+++ b/Graphics/GraphicsEngine/include/DeviceContextBase.hpp
@@ -38,7 +38,7 @@
#include "Sampler.h"
#include "ObjectBase.h"
#include "DebugUtilities.h"
-#include "ValidatedCast.h"
+#include "ValidatedCast.hpp"
#include "GraphicsAccessories.hpp"
#include "TextureBase.hpp"
diff --git a/Graphics/GraphicsEngine/include/DeviceObjectBase.hpp b/Graphics/GraphicsEngine/include/DeviceObjectBase.hpp
index 31a00f40..a1bab9cd 100644
--- a/Graphics/GraphicsEngine/include/DeviceObjectBase.hpp
+++ b/Graphics/GraphicsEngine/include/DeviceObjectBase.hpp
@@ -32,9 +32,9 @@
#include <cstring>
#include <cstdio>
-#include "RefCntAutoPtr.h"
+#include "RefCntAutoPtr.hpp"
#include "ObjectBase.h"
-#include "UniqueIdentifier.h"
+#include "UniqueIdentifier.hpp"
#include "EngineMemory.h"
namespace Diligent
diff --git a/Graphics/GraphicsEngine/include/FenceBase.hpp b/Graphics/GraphicsEngine/include/FenceBase.hpp
index b596e8c8..97e9904c 100644
--- a/Graphics/GraphicsEngine/include/FenceBase.hpp
+++ b/Graphics/GraphicsEngine/include/FenceBase.hpp
@@ -32,7 +32,7 @@
#include "DeviceObjectBase.hpp"
#include "GraphicsTypes.h"
-#include "RefCntAutoPtr.h"
+#include "RefCntAutoPtr.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/PipelineStateBase.hpp b/Graphics/GraphicsEngine/include/PipelineStateBase.hpp
index 5dddbaea..0098ee37 100644
--- a/Graphics/GraphicsEngine/include/PipelineStateBase.hpp
+++ b/Graphics/GraphicsEngine/include/PipelineStateBase.hpp
@@ -35,10 +35,10 @@
#include "PipelineState.h"
#include "DeviceObjectBase.hpp"
-#include "STDAllocator.h"
+#include "STDAllocator.hpp"
#include "EngineMemory.h"
#include "GraphicsAccessories.hpp"
-#include "StringPool.h"
+#include "StringPool.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/QueryBase.hpp b/Graphics/GraphicsEngine/include/QueryBase.hpp
index 91e5f034..701b7d2b 100644
--- a/Graphics/GraphicsEngine/include/QueryBase.hpp
+++ b/Graphics/GraphicsEngine/include/QueryBase.hpp
@@ -33,7 +33,7 @@
#include "Query.h"
#include "DeviceObjectBase.hpp"
#include "GraphicsTypes.h"
-#include "RefCntAutoPtr.h"
+#include "RefCntAutoPtr.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/RenderDeviceBase.hpp b/Graphics/GraphicsEngine/include/RenderDeviceBase.hpp
index 8c16321d..953aaf8a 100644
--- a/Graphics/GraphicsEngine/include/RenderDeviceBase.hpp
+++ b/Graphics/GraphicsEngine/include/RenderDeviceBase.hpp
@@ -35,14 +35,14 @@
#include "Defines.h"
#include "ResourceMappingImpl.hpp"
#include "StateObjectsRegistry.hpp"
-#include "HashUtils.h"
+#include "HashUtils.hpp"
#include "ObjectBase.h"
#include "DeviceContext.h"
#include "SwapChain.h"
#include "GraphicsAccessories.hpp"
-#include "FixedBlockMemoryAllocator.h"
+#include "FixedBlockMemoryAllocator.hpp"
#include "EngineMemory.h"
-#include "STDAllocator.h"
+#include "STDAllocator.hpp"
namespace std
{
diff --git a/Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp b/Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp
index 011e4e7a..55659f62 100644
--- a/Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp
+++ b/Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp
@@ -33,8 +33,8 @@
#include "ResourceMapping.h"
#include "ObjectBase.h"
#include <unordered_map>
-#include "HashUtils.h"
-#include "STDAllocator.h"
+#include "HashUtils.hpp"
+#include "STDAllocator.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/ShaderBase.hpp b/Graphics/GraphicsEngine/include/ShaderBase.hpp
index 252f11ac..5e7c2d33 100644
--- a/Graphics/GraphicsEngine/include/ShaderBase.hpp
+++ b/Graphics/GraphicsEngine/include/ShaderBase.hpp
@@ -34,10 +34,10 @@
#include "Shader.h"
#include "DeviceObjectBase.hpp"
-#include "STDAllocator.h"
+#include "STDAllocator.hpp"
#include "PlatformMisc.h"
#include "EngineMemory.h"
-#include "Align.h"
+#include "Align.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp b/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp
index 9600294c..3671521f 100644
--- a/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp
+++ b/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp
@@ -33,7 +33,7 @@
#include "ShaderResourceBinding.h"
#include "ObjectBase.h"
#include "GraphicsTypes.h"
-#include "RefCntAutoPtr.h"
+#include "RefCntAutoPtr.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp b/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp
index 4e8f49e0..819520df 100644
--- a/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp
+++ b/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp
@@ -34,7 +34,7 @@
#include "ShaderResourceVariable.h"
#include "PipelineState.h"
-#include "StringTools.h"
+#include "StringTools.hpp"
#include "GraphicsAccessories.hpp"
namespace Diligent
diff --git a/Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp b/Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp
index f3484bc1..1e67d917 100644
--- a/Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp
+++ b/Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp
@@ -32,7 +32,7 @@
#include "DeviceObject.h"
#include <unordered_map>
-#include "STDAllocator.h"
+#include "STDAllocator.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/SwapChainBase.hpp b/Graphics/GraphicsEngine/include/SwapChainBase.hpp
index 7db31f8d..cd02c2c8 100644
--- a/Graphics/GraphicsEngine/include/SwapChainBase.hpp
+++ b/Graphics/GraphicsEngine/include/SwapChainBase.hpp
@@ -34,8 +34,8 @@
#include "DeviceContext.h"
#include "SwapChain.h"
#include "ObjectBase.h"
-#include "Errors.h"
-#include "RefCntAutoPtr.h"
+#include "Errors.hpp"
+#include "RefCntAutoPtr.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/TextureBase.hpp b/Graphics/GraphicsEngine/include/TextureBase.hpp
index 9e1a29ed..399acd65 100644
--- a/Graphics/GraphicsEngine/include/TextureBase.hpp
+++ b/Graphics/GraphicsEngine/include/TextureBase.hpp
@@ -34,8 +34,8 @@
#include "GraphicsTypes.h"
#include "DeviceObjectBase.hpp"
#include "GraphicsAccessories.hpp"
-#include "STDAllocator.h"
-#include "FormatString.h"
+#include "STDAllocator.hpp"
+#include "FormatString.hpp"
#include <memory>
namespace Diligent
diff --git a/Graphics/GraphicsEngine/include/TextureViewBase.hpp b/Graphics/GraphicsEngine/include/TextureViewBase.hpp
index f9879264..e9bf3c75 100644
--- a/Graphics/GraphicsEngine/include/TextureViewBase.hpp
+++ b/Graphics/GraphicsEngine/include/TextureViewBase.hpp
@@ -32,7 +32,7 @@
#include "TextureView.h"
#include "DeviceObjectBase.hpp"
-#include "RefCntAutoPtr.h"
+#include "RefCntAutoPtr.hpp"
#include "GraphicsAccessories.hpp"
namespace Diligent
diff --git a/Graphics/GraphicsEngine/include/pch.h b/Graphics/GraphicsEngine/include/pch.h
index 1472ead3..fe8bf9de 100644
--- a/Graphics/GraphicsEngine/include/pch.h
+++ b/Graphics/GraphicsEngine/include/pch.h
@@ -38,8 +38,8 @@
#include <memory>
#include <algorithm>
#include "GraphicsTypes.h"
-#include "RefCntAutoPtr.h"
-#include "Errors.h"
+#include "RefCntAutoPtr.hpp"
+#include "Errors.hpp"
#include "DebugUtilities.h"
#include "RenderDeviceBase.hpp"
#include "DeviceContextBase.hpp" \ No newline at end of file
diff --git a/Graphics/GraphicsEngine/src/DefaultShaderSourceStreamFactory.cpp b/Graphics/GraphicsEngine/src/DefaultShaderSourceStreamFactory.cpp
index 83daa62d..ee14c692 100644
--- a/Graphics/GraphicsEngine/src/DefaultShaderSourceStreamFactory.cpp
+++ b/Graphics/GraphicsEngine/src/DefaultShaderSourceStreamFactory.cpp
@@ -28,9 +28,9 @@
#include "pch.h"
#include "DefaultShaderSourceStreamFactory.h"
#include "ObjectBase.h"
-#include "RefCntAutoPtr.h"
+#include "RefCntAutoPtr.hpp"
#include "EngineMemory.h"
-#include "BasicFileStream.h"
+#include "BasicFileStream.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/src/EngineMemory.cpp b/Graphics/GraphicsEngine/src/EngineMemory.cpp
index 5a37c674..198bf0ba 100644
--- a/Graphics/GraphicsEngine/src/EngineMemory.cpp
+++ b/Graphics/GraphicsEngine/src/EngineMemory.cpp
@@ -31,7 +31,7 @@
#include "pch.h"
#include "EngineMemory.h"
-#include "DefaultRawMemoryAllocator.h"
+#include "DefaultRawMemoryAllocator.hpp"
namespace Diligent
{