From 038fa798e89c90f55efb7dacbf154f42d40058b7 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Thu, 22 Feb 2018 22:24:09 -0800 Subject: Fixed interface headers to use relative paths in #include --- Graphics/GraphicsEngineD3D11/interface/BufferD3D11.h | 2 +- Graphics/GraphicsEngineD3D11/interface/BufferViewD3D11.h | 2 +- .../GraphicsEngineD3D11/interface/DeviceContextD3D11.h | 2 +- .../GraphicsEngineD3D11/interface/EngineD3D11Attribs.h | 3 +-- .../GraphicsEngineD3D11/interface/PipelineStateD3D11.h | 2 +- Graphics/GraphicsEngineD3D11/interface/RenderDeviceD3D11.h | 2 +- .../interface/RenderDeviceFactoryD3D11.h | 14 ++++++++------ Graphics/GraphicsEngineD3D11/interface/SamplerD3D11.h | 2 +- Graphics/GraphicsEngineD3D11/interface/ShaderD3D11.h | 2 +- .../interface/ShaderResourceBindingD3D11.h | 2 +- Graphics/GraphicsEngineD3D11/interface/SwapChainD3D11.h | 2 +- Graphics/GraphicsEngineD3D11/interface/TextureD3D11.h | 2 +- Graphics/GraphicsEngineD3D11/interface/TextureViewD3D11.h | 2 +- 13 files changed, 20 insertions(+), 19 deletions(-) (limited to 'Graphics/GraphicsEngineD3D11') diff --git a/Graphics/GraphicsEngineD3D11/interface/BufferD3D11.h b/Graphics/GraphicsEngineD3D11/interface/BufferD3D11.h index 26189c78..78baed0c 100644 --- a/Graphics/GraphicsEngineD3D11/interface/BufferD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/BufferD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::IBufferD3D11 interface -#include "Buffer.h" +#include "../../GraphicsEngine/interface/Buffer.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/BufferViewD3D11.h b/Graphics/GraphicsEngineD3D11/interface/BufferViewD3D11.h index e4df92c7..c78d6c5e 100644 --- a/Graphics/GraphicsEngineD3D11/interface/BufferViewD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/BufferViewD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::IBufferViewD3D11 interface -#include "BufferView.h" +#include "../../GraphicsEngine/interface/BufferView.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/DeviceContextD3D11.h b/Graphics/GraphicsEngineD3D11/interface/DeviceContextD3D11.h index f6d4d74c..9c217693 100644 --- a/Graphics/GraphicsEngineD3D11/interface/DeviceContextD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/DeviceContextD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::IDeviceContextD3D11 interface -#include "DeviceContext.h" +#include "../../GraphicsEngine/interface/DeviceContext.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/EngineD3D11Attribs.h b/Graphics/GraphicsEngineD3D11/interface/EngineD3D11Attribs.h index 9cc4ce8b..912cb474 100644 --- a/Graphics/GraphicsEngineD3D11/interface/EngineD3D11Attribs.h +++ b/Graphics/GraphicsEngineD3D11/interface/EngineD3D11Attribs.h @@ -26,8 +26,7 @@ /// \file /// Definition of the Engine D3D11 attribs -#include "BasicTypes.h" -#include "GraphicsTypes.h" +#include "../../GraphicsEngine/interface/GraphicsTypes.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/PipelineStateD3D11.h b/Graphics/GraphicsEngineD3D11/interface/PipelineStateD3D11.h index 0c76a0f5..3d9406b1 100644 --- a/Graphics/GraphicsEngineD3D11/interface/PipelineStateD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/PipelineStateD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::IPipeplineStateD3D11 interface -#include "PipelineState.h" +#include "../../GraphicsEngine/interface/PipelineState.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/RenderDeviceD3D11.h b/Graphics/GraphicsEngineD3D11/interface/RenderDeviceD3D11.h index 25ed6de0..7998f6fd 100644 --- a/Graphics/GraphicsEngineD3D11/interface/RenderDeviceD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/RenderDeviceD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::IRenderDeviceD3D11 interface -#include "RenderDevice.h" +#include "../../GraphicsEngine/interface/RenderDevice.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/RenderDeviceFactoryD3D11.h b/Graphics/GraphicsEngineD3D11/interface/RenderDeviceFactoryD3D11.h index 2f3cd4bf..3806ca1a 100644 --- a/Graphics/GraphicsEngineD3D11/interface/RenderDeviceFactoryD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/RenderDeviceFactoryD3D11.h @@ -26,16 +26,18 @@ /// \file /// Declaration of functions that initialize Direct3D11-based engine implementation -#include "Errors.h" -#include "EngineD3D11Attribs.h" -#include "RenderDevice.h" -#include "DeviceContext.h" -#include "SwapChain.h" +#include "../../../Platforms/Basic/interface/Errors.h" + +#include "../../GraphicsEngine/interface/RenderDevice.h" +#include "../../GraphicsEngine/interface/DeviceContext.h" +#include "../../GraphicsEngine/interface/SwapChain.h" #if PLATFORM_UNIVERSAL_WINDOWS && defined(ENGINE_DLL) -# include "StringTools.h" +# include "../../../Common/interface/StringTools.h" #endif +#include "EngineD3D11Attribs.h" + namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/SamplerD3D11.h b/Graphics/GraphicsEngineD3D11/interface/SamplerD3D11.h index 8ccb14d4..b4534910 100644 --- a/Graphics/GraphicsEngineD3D11/interface/SamplerD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/SamplerD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::ISamplerD3D11 interface -#include "Sampler.h" +#include "../../GraphicsEngine/interface/Sampler.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/ShaderD3D11.h b/Graphics/GraphicsEngineD3D11/interface/ShaderD3D11.h index 0017dc27..b75cdabf 100644 --- a/Graphics/GraphicsEngineD3D11/interface/ShaderD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/ShaderD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::IShaderD3D11 interface -#include "Shader.h" +#include "../../GraphicsEngine/interface/Shader.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/ShaderResourceBindingD3D11.h b/Graphics/GraphicsEngineD3D11/interface/ShaderResourceBindingD3D11.h index 1d224546..85f2778f 100644 --- a/Graphics/GraphicsEngineD3D11/interface/ShaderResourceBindingD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/ShaderResourceBindingD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::IShaderResourceBindingD3D11 interface and related data structures -#include "ShaderResourceBinding.h" +#include "../../GraphicsEngine/interface/ShaderResourceBinding.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/SwapChainD3D11.h b/Graphics/GraphicsEngineD3D11/interface/SwapChainD3D11.h index e49a6357..3d903ec0 100644 --- a/Graphics/GraphicsEngineD3D11/interface/SwapChainD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/SwapChainD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::ISwapChainD3D11 interface -#include "SwapChain.h" +#include "../../GraphicsEngine/interface/SwapChain.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/TextureD3D11.h b/Graphics/GraphicsEngineD3D11/interface/TextureD3D11.h index a5cb3b46..204774be 100644 --- a/Graphics/GraphicsEngineD3D11/interface/TextureD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/TextureD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::ITextureD3D11 interface -#include "Texture.h" +#include "../../GraphicsEngine/interface/Texture.h" namespace Diligent { diff --git a/Graphics/GraphicsEngineD3D11/interface/TextureViewD3D11.h b/Graphics/GraphicsEngineD3D11/interface/TextureViewD3D11.h index 69b1b921..5f2085f7 100644 --- a/Graphics/GraphicsEngineD3D11/interface/TextureViewD3D11.h +++ b/Graphics/GraphicsEngineD3D11/interface/TextureViewD3D11.h @@ -26,7 +26,7 @@ /// \file /// Definition of the Diligent::ITextureViewD3D11 interface -#include "TextureView.h" +#include "../../GraphicsEngine/interface/TextureView.h" namespace Diligent { -- cgit v1.2.3