summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-01-26 21:44:37 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-01-26 21:44:37 +0000
commit38ad2d5cb659074ad9b4bde16bcbf71481719b94 (patch)
tree519ded6e25d22d63f7be706c3d71aaf7dd2a6279 /Graphics/GraphicsEngine
parentRenamed .h -> .hpp files in GLSLTools, GraphicsAccessories, and GraphicsTools... (diff)
downloadDiligentCore-38ad2d5cb659074ad9b4bde16bcbf71481719b94.tar.gz
DiligentCore-38ad2d5cb659074ad9b4bde16bcbf71481719b94.zip
Renamed .h -> .hpp in GraphicsEngine, GraphicsEngineD3DBase, GraphicsEningeD3D11, and GraphicsEningeD3D12 projects
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/CMakeLists.txt38
-rw-r--r--Graphics/GraphicsEngine/include/BufferBase.hpp (renamed from Graphics/GraphicsEngine/include/BufferBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/BufferViewBase.hpp (renamed from Graphics/GraphicsEngine/include/BufferViewBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/CommandListBase.hpp (renamed from Graphics/GraphicsEngine/include/CommandListBase.h)4
-rw-r--r--Graphics/GraphicsEngine/include/DeviceContextBase.hpp (renamed from Graphics/GraphicsEngine/include/DeviceContextBase.h)4
-rw-r--r--Graphics/GraphicsEngine/include/DeviceObjectBase.hpp (renamed from Graphics/GraphicsEngine/include/DeviceObjectBase.h)0
-rw-r--r--Graphics/GraphicsEngine/include/EngineFactoryBase.hpp (renamed from Graphics/GraphicsEngine/include/EngineFactoryBase.h)0
-rw-r--r--Graphics/GraphicsEngine/include/FenceBase.hpp (renamed from Graphics/GraphicsEngine/include/FenceBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/PipelineStateBase.hpp (renamed from Graphics/GraphicsEngine/include/PipelineStateBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/QueryBase.hpp (renamed from Graphics/GraphicsEngine/include/QueryBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/RenderDeviceBase.hpp (renamed from Graphics/GraphicsEngine/include/RenderDeviceBase.h)6
-rw-r--r--Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp (renamed from Graphics/GraphicsEngine/include/ResourceMappingImpl.h)0
-rw-r--r--Graphics/GraphicsEngine/include/SamplerBase.hpp (renamed from Graphics/GraphicsEngine/include/SamplerBase.h)4
-rw-r--r--Graphics/GraphicsEngine/include/ShaderBase.hpp (renamed from Graphics/GraphicsEngine/include/ShaderBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp (renamed from Graphics/GraphicsEngine/include/ShaderResourceBindingBase.h)0
-rw-r--r--Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp (renamed from Graphics/GraphicsEngine/include/ShaderResourceVariableBase.h)0
-rw-r--r--Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp (renamed from Graphics/GraphicsEngine/include/StateObjectsRegistry.h)0
-rw-r--r--Graphics/GraphicsEngine/include/SwapChainBase.hpp (renamed from Graphics/GraphicsEngine/include/SwapChainBase.h)0
-rw-r--r--Graphics/GraphicsEngine/include/TextureBase.hpp (renamed from Graphics/GraphicsEngine/include/TextureBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/TextureViewBase.hpp (renamed from Graphics/GraphicsEngine/include/TextureViewBase.h)2
-rw-r--r--Graphics/GraphicsEngine/include/pch.h4
-rw-r--r--Graphics/GraphicsEngine/src/ResourceMapping.cpp4
22 files changed, 40 insertions, 40 deletions
diff --git a/Graphics/GraphicsEngine/CMakeLists.txt b/Graphics/GraphicsEngine/CMakeLists.txt
index f28c3db1..037af6fa 100644
--- a/Graphics/GraphicsEngine/CMakeLists.txt
+++ b/Graphics/GraphicsEngine/CMakeLists.txt
@@ -3,29 +3,29 @@ cmake_minimum_required (VERSION 3.6)
project(Diligent-GraphicsEngine CXX)
set(INCLUDE
- include/BufferBase.h
- include/BufferViewBase.h
- include/CommandListBase.h
+ include/BufferBase.hpp
+ include/BufferViewBase.hpp
+ include/CommandListBase.hpp
include/DefaultShaderSourceStreamFactory.h
include/Defines.h
- include/DeviceContextBase.h
- include/DeviceObjectBase.h
- include/EngineFactoryBase.h
+ include/DeviceContextBase.hpp
+ include/DeviceObjectBase.hpp
+ include/EngineFactoryBase.hpp
include/EngineMemory.h
- include/FenceBase.h
+ include/FenceBase.hpp
include/pch.h
- include/PipelineStateBase.h
- include/QueryBase.h
- include/RenderDeviceBase.h
- include/ResourceMappingImpl.h
- include/SamplerBase.h
- include/ShaderBase.h
- include/ShaderResourceBindingBase.h
- include/ShaderResourceVariableBase.h
- include/StateObjectsRegistry.h
- include/SwapChainBase.h
- include/TextureBase.h
- include/TextureViewBase.h
+ include/PipelineStateBase.hpp
+ include/QueryBase.hpp
+ include/RenderDeviceBase.hpp
+ include/ResourceMappingImpl.hpp
+ include/SamplerBase.hpp
+ include/ShaderBase.hpp
+ include/ShaderResourceBindingBase.hpp
+ include/ShaderResourceVariableBase.hpp
+ include/StateObjectsRegistry.hpp
+ include/SwapChainBase.hpp
+ include/TextureBase.hpp
+ include/TextureViewBase.hpp
)
set(INTERFACE
diff --git a/Graphics/GraphicsEngine/include/BufferBase.h b/Graphics/GraphicsEngine/include/BufferBase.hpp
index 388625b1..a40978f7 100644
--- a/Graphics/GraphicsEngine/include/BufferBase.h
+++ b/Graphics/GraphicsEngine/include/BufferBase.hpp
@@ -32,7 +32,7 @@
#include "Buffer.h"
#include "GraphicsTypes.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "GraphicsAccessories.hpp"
#include "STDAllocator.h"
#include <memory>
diff --git a/Graphics/GraphicsEngine/include/BufferViewBase.h b/Graphics/GraphicsEngine/include/BufferViewBase.hpp
index 59e9a14a..37e80756 100644
--- a/Graphics/GraphicsEngine/include/BufferViewBase.h
+++ b/Graphics/GraphicsEngine/include/BufferViewBase.hpp
@@ -31,7 +31,7 @@
/// Implementation of the Diligent::BufferViewBase template class
#include "BufferView.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "GraphicsTypes.h"
#include "RefCntAutoPtr.h"
diff --git a/Graphics/GraphicsEngine/include/CommandListBase.h b/Graphics/GraphicsEngine/include/CommandListBase.hpp
index 2fda804b..051eb737 100644
--- a/Graphics/GraphicsEngine/include/CommandListBase.h
+++ b/Graphics/GraphicsEngine/include/CommandListBase.hpp
@@ -31,8 +31,8 @@
/// Implementation of the Diligent::CommandListBase template class
#include "CommandList.h"
-#include "DeviceObjectBase.h"
-#include "RenderDeviceBase.h"
+#include "DeviceObjectBase.hpp"
+#include "RenderDeviceBase.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/DeviceContextBase.h b/Graphics/GraphicsEngine/include/DeviceContextBase.hpp
index c6ed1793..87604f84 100644
--- a/Graphics/GraphicsEngine/include/DeviceContextBase.h
+++ b/Graphics/GraphicsEngine/include/DeviceContextBase.hpp
@@ -33,14 +33,14 @@
#include <unordered_map>
#include "DeviceContext.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "ResourceMapping.h"
#include "Sampler.h"
#include "ObjectBase.h"
#include "DebugUtilities.h"
#include "ValidatedCast.h"
#include "GraphicsAccessories.hpp"
-#include "TextureBase.h"
+#include "TextureBase.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/DeviceObjectBase.h b/Graphics/GraphicsEngine/include/DeviceObjectBase.hpp
index 31a00f40..31a00f40 100644
--- a/Graphics/GraphicsEngine/include/DeviceObjectBase.h
+++ b/Graphics/GraphicsEngine/include/DeviceObjectBase.hpp
diff --git a/Graphics/GraphicsEngine/include/EngineFactoryBase.h b/Graphics/GraphicsEngine/include/EngineFactoryBase.hpp
index 2e0b954c..2e0b954c 100644
--- a/Graphics/GraphicsEngine/include/EngineFactoryBase.h
+++ b/Graphics/GraphicsEngine/include/EngineFactoryBase.hpp
diff --git a/Graphics/GraphicsEngine/include/FenceBase.h b/Graphics/GraphicsEngine/include/FenceBase.hpp
index 2fac4355..b596e8c8 100644
--- a/Graphics/GraphicsEngine/include/FenceBase.h
+++ b/Graphics/GraphicsEngine/include/FenceBase.hpp
@@ -30,7 +30,7 @@
/// \file
/// Implementation of the Diligent::FenceBase template class
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "GraphicsTypes.h"
#include "RefCntAutoPtr.h"
diff --git a/Graphics/GraphicsEngine/include/PipelineStateBase.h b/Graphics/GraphicsEngine/include/PipelineStateBase.hpp
index fd3563a0..5dddbaea 100644
--- a/Graphics/GraphicsEngine/include/PipelineStateBase.h
+++ b/Graphics/GraphicsEngine/include/PipelineStateBase.hpp
@@ -34,7 +34,7 @@
#include <vector>
#include "PipelineState.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "STDAllocator.h"
#include "EngineMemory.h"
#include "GraphicsAccessories.hpp"
diff --git a/Graphics/GraphicsEngine/include/QueryBase.h b/Graphics/GraphicsEngine/include/QueryBase.hpp
index daa0d30e..91e5f034 100644
--- a/Graphics/GraphicsEngine/include/QueryBase.h
+++ b/Graphics/GraphicsEngine/include/QueryBase.hpp
@@ -31,7 +31,7 @@
/// Implementation of Diligent::QueryBase template class
#include "Query.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "GraphicsTypes.h"
#include "RefCntAutoPtr.h"
diff --git a/Graphics/GraphicsEngine/include/RenderDeviceBase.h b/Graphics/GraphicsEngine/include/RenderDeviceBase.hpp
index 68ab63a6..8c16321d 100644
--- a/Graphics/GraphicsEngine/include/RenderDeviceBase.h
+++ b/Graphics/GraphicsEngine/include/RenderDeviceBase.hpp
@@ -31,10 +31,10 @@
/// Implementation of the Diligent::RenderDeviceBase template class and related structures
#include "RenderDevice.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "Defines.h"
-#include "ResourceMappingImpl.h"
-#include "StateObjectsRegistry.h"
+#include "ResourceMappingImpl.hpp"
+#include "StateObjectsRegistry.hpp"
#include "HashUtils.h"
#include "ObjectBase.h"
#include "DeviceContext.h"
diff --git a/Graphics/GraphicsEngine/include/ResourceMappingImpl.h b/Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp
index 011e4e7a..011e4e7a 100644
--- a/Graphics/GraphicsEngine/include/ResourceMappingImpl.h
+++ b/Graphics/GraphicsEngine/include/ResourceMappingImpl.hpp
diff --git a/Graphics/GraphicsEngine/include/SamplerBase.h b/Graphics/GraphicsEngine/include/SamplerBase.hpp
index aa408556..4c9c505d 100644
--- a/Graphics/GraphicsEngine/include/SamplerBase.h
+++ b/Graphics/GraphicsEngine/include/SamplerBase.hpp
@@ -31,8 +31,8 @@
/// Implementation of the Diligent::SamplerBase template class
#include "Sampler.h"
-#include "DeviceObjectBase.h"
-#include "RenderDeviceBase.h"
+#include "DeviceObjectBase.hpp"
+#include "RenderDeviceBase.hpp"
namespace Diligent
{
diff --git a/Graphics/GraphicsEngine/include/ShaderBase.h b/Graphics/GraphicsEngine/include/ShaderBase.hpp
index cf99cdc0..252f11ac 100644
--- a/Graphics/GraphicsEngine/include/ShaderBase.h
+++ b/Graphics/GraphicsEngine/include/ShaderBase.hpp
@@ -33,7 +33,7 @@
#include <vector>
#include "Shader.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "STDAllocator.h"
#include "PlatformMisc.h"
#include "EngineMemory.h"
diff --git a/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.h b/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp
index 9600294c..9600294c 100644
--- a/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.h
+++ b/Graphics/GraphicsEngine/include/ShaderResourceBindingBase.hpp
diff --git a/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.h b/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp
index 4e8f49e0..4e8f49e0 100644
--- a/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.h
+++ b/Graphics/GraphicsEngine/include/ShaderResourceVariableBase.hpp
diff --git a/Graphics/GraphicsEngine/include/StateObjectsRegistry.h b/Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp
index f3484bc1..f3484bc1 100644
--- a/Graphics/GraphicsEngine/include/StateObjectsRegistry.h
+++ b/Graphics/GraphicsEngine/include/StateObjectsRegistry.hpp
diff --git a/Graphics/GraphicsEngine/include/SwapChainBase.h b/Graphics/GraphicsEngine/include/SwapChainBase.hpp
index 7db31f8d..7db31f8d 100644
--- a/Graphics/GraphicsEngine/include/SwapChainBase.h
+++ b/Graphics/GraphicsEngine/include/SwapChainBase.hpp
diff --git a/Graphics/GraphicsEngine/include/TextureBase.h b/Graphics/GraphicsEngine/include/TextureBase.hpp
index 8a3bc8d3..9e1a29ed 100644
--- a/Graphics/GraphicsEngine/include/TextureBase.h
+++ b/Graphics/GraphicsEngine/include/TextureBase.hpp
@@ -32,7 +32,7 @@
#include "Texture.h"
#include "GraphicsTypes.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "GraphicsAccessories.hpp"
#include "STDAllocator.h"
#include "FormatString.h"
diff --git a/Graphics/GraphicsEngine/include/TextureViewBase.h b/Graphics/GraphicsEngine/include/TextureViewBase.hpp
index 3a2c4e90..f9879264 100644
--- a/Graphics/GraphicsEngine/include/TextureViewBase.h
+++ b/Graphics/GraphicsEngine/include/TextureViewBase.hpp
@@ -31,7 +31,7 @@
/// Implementation of the Diligent::TextureViewBase template class
#include "TextureView.h"
-#include "DeviceObjectBase.h"
+#include "DeviceObjectBase.hpp"
#include "RefCntAutoPtr.h"
#include "GraphicsAccessories.hpp"
diff --git a/Graphics/GraphicsEngine/include/pch.h b/Graphics/GraphicsEngine/include/pch.h
index aa47fb15..1472ead3 100644
--- a/Graphics/GraphicsEngine/include/pch.h
+++ b/Graphics/GraphicsEngine/include/pch.h
@@ -41,5 +41,5 @@
#include "RefCntAutoPtr.h"
#include "Errors.h"
#include "DebugUtilities.h"
-#include "RenderDeviceBase.h"
-#include "DeviceContextBase.h" \ No newline at end of file
+#include "RenderDeviceBase.hpp"
+#include "DeviceContextBase.hpp" \ No newline at end of file
diff --git a/Graphics/GraphicsEngine/src/ResourceMapping.cpp b/Graphics/GraphicsEngine/src/ResourceMapping.cpp
index 11acb714..bf34056c 100644
--- a/Graphics/GraphicsEngine/src/ResourceMapping.cpp
+++ b/Graphics/GraphicsEngine/src/ResourceMapping.cpp
@@ -26,8 +26,8 @@
*/
#include "pch.h"
-#include "ResourceMappingImpl.h"
-#include "DeviceObjectBase.h"
+#include "ResourceMappingImpl.hpp"
+#include "DeviceObjectBase.hpp"
using namespace std;