summaryrefslogtreecommitdiffstats
path: root/Graphics
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-12-28 01:25:18 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-12-28 01:25:18 +0000
commit50a3546fbc89633de34f52cb6c30757d56335ffd (patch)
tree23bae6d58dc595aa0adb021e798083ab8a5136fd /Graphics
parentMerge pull request #48 from Zone-organization/master (diff)
downloadDiligentCore-50a3546fbc89633de34f52cb6c30757d56335ffd.tar.gz
DiligentCore-50a3546fbc89633de34f52cb6c30757d56335ffd.zip
Updated GraphicsAccessoires' interface headers to use relative include paths
Diffstat (limited to 'Graphics')
-rw-r--r--Graphics/GraphicsAccessories/interface/ResourceReleaseQueue.h8
-rw-r--r--Graphics/GraphicsAccessories/interface/RingBuffer.h8
-rw-r--r--Graphics/GraphicsAccessories/interface/SRBMemoryAllocator.h2
-rw-r--r--Graphics/GraphicsAccessories/interface/VariableSizeAllocationsManager.h8
-rw-r--r--Graphics/GraphicsAccessories/interface/VariableSizeGPUAllocationsManager.h1
5 files changed, 13 insertions, 14 deletions
diff --git a/Graphics/GraphicsAccessories/interface/ResourceReleaseQueue.h b/Graphics/GraphicsAccessories/interface/ResourceReleaseQueue.h
index 13b22ad6..ee515feb 100644
--- a/Graphics/GraphicsAccessories/interface/ResourceReleaseQueue.h
+++ b/Graphics/GraphicsAccessories/interface/ResourceReleaseQueue.h
@@ -32,10 +32,10 @@
#include <mutex>
#include <deque>
-#include "MemoryAllocator.h"
-#include "STDAllocator.h"
-#include "DebugUtilities.h"
-#include "Atomics.h"
+#include "../../../Primitives/interface/MemoryAllocator.h"
+#include "../../../Common/interface/STDAllocator.h"
+#include "../../../Platforms/interface/Atomics.h"
+#include "../../../Platforms/Basic/interface/DebugUtilities.h"
namespace Diligent
{
diff --git a/Graphics/GraphicsAccessories/interface/RingBuffer.h b/Graphics/GraphicsAccessories/interface/RingBuffer.h
index 0f8cfefd..ac1d72dc 100644
--- a/Graphics/GraphicsAccessories/interface/RingBuffer.h
+++ b/Graphics/GraphicsAccessories/interface/RingBuffer.h
@@ -28,10 +28,10 @@
#include <deque>
-#include "MemoryAllocator.h"
-#include "STDAllocator.h"
-#include "DebugUtilities.h"
-#include "Align.h"
+#include "../../../Primitives/interface/MemoryAllocator.h"
+#include "../../../Platforms/Basic/interface/DebugUtilities.h"
+#include "../../../Common/interface/Align.h"
+#include "../../../Common/interface/STDAllocator.h"
namespace Diligent
{
diff --git a/Graphics/GraphicsAccessories/interface/SRBMemoryAllocator.h b/Graphics/GraphicsAccessories/interface/SRBMemoryAllocator.h
index c6aa9f04..c8b7407d 100644
--- a/Graphics/GraphicsAccessories/interface/SRBMemoryAllocator.h
+++ b/Graphics/GraphicsAccessories/interface/SRBMemoryAllocator.h
@@ -25,7 +25,7 @@
#pragma once
-#include "FixedBlockMemoryAllocator.h"
+#include "../../../Common/interface/FixedBlockMemoryAllocator.h"
namespace Diligent
{
diff --git a/Graphics/GraphicsAccessories/interface/VariableSizeAllocationsManager.h b/Graphics/GraphicsAccessories/interface/VariableSizeAllocationsManager.h
index bb041e81..360995b0 100644
--- a/Graphics/GraphicsAccessories/interface/VariableSizeAllocationsManager.h
+++ b/Graphics/GraphicsAccessories/interface/VariableSizeAllocationsManager.h
@@ -29,10 +29,10 @@
#include <map>
#include <algorithm>
-#include "MemoryAllocator.h"
-#include "STDAllocator.h"
-#include "DebugUtilities.h"
-#include "Align.h"
+#include "../../../Primitives/interface/MemoryAllocator.h"
+#include "../../../Platforms/Basic/interface/DebugUtilities.h"
+#include "../../../Common/interface/Align.h"
+#include "../../../Common/interface/STDAllocator.h"
namespace Diligent
{
diff --git a/Graphics/GraphicsAccessories/interface/VariableSizeGPUAllocationsManager.h b/Graphics/GraphicsAccessories/interface/VariableSizeGPUAllocationsManager.h
index 4ea7e814..5617974b 100644
--- a/Graphics/GraphicsAccessories/interface/VariableSizeGPUAllocationsManager.h
+++ b/Graphics/GraphicsAccessories/interface/VariableSizeGPUAllocationsManager.h
@@ -29,7 +29,6 @@
#include <deque>
#include "VariableSizeAllocationsManager.h"
-#include "STDAllocator.h"
namespace Diligent
{