diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-03-26 00:23:55 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-03-26 00:23:55 +0000 |
| commit | 67c9dc344148c49ca6eeba380520e89b81d8dd05 (patch) | |
| tree | 09604f2bc08b4d48194c36661b78f69c2a554dd3 /Tests/IncludeTest/src/GraphicsTools | |
| parent | Updated tools module (Fixed build errors) (diff) | |
| download | DiligentEngine-67c9dc344148c49ca6eeba380520e89b81d8dd05.tar.gz DiligentEngine-67c9dc344148c49ca6eeba380520e89b81d8dd05.zip | |
Updated include test to reference all headers relative to the Engine root
Diffstat (limited to 'Tests/IncludeTest/src/GraphicsTools')
9 files changed, 9 insertions, 9 deletions
diff --git a/Tests/IncludeTest/src/GraphicsTools/BasicShaderSourceStreamFactoryH_test.cpp b/Tests/IncludeTest/src/GraphicsTools/BasicShaderSourceStreamFactoryH_test.cpp index 2c9ed1f..ebca682 100644 --- a/Tests/IncludeTest/src/GraphicsTools/BasicShaderSourceStreamFactoryH_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/BasicShaderSourceStreamFactoryH_test.cpp @@ -21,4 +21,4 @@ * of the possibility of such damages. */ -#include "Graphics/GraphicsTools/include/BasicShaderSourceStreamFactory.h" +#include "DiligentCore/Graphics/GraphicsTools/include/BasicShaderSourceStreamFactory.h" diff --git a/Tests/IncludeTest/src/GraphicsTools/CommonlyUsedStatesH_test.cpp b/Tests/IncludeTest/src/GraphicsTools/CommonlyUsedStatesH_test.cpp index e668400..45b7319 100644 --- a/Tests/IncludeTest/src/GraphicsTools/CommonlyUsedStatesH_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/CommonlyUsedStatesH_test.cpp @@ -21,4 +21,4 @@ * of the possibility of such damages. */ -#include "Graphics/GraphicsTools/include/CommonlyUsedStates.h" +#include "DiligentCore/Graphics/GraphicsTools/include/CommonlyUsedStates.h" diff --git a/Tests/IncludeTest/src/GraphicsTools/GraphicsUtilitiesH_test.cpp b/Tests/IncludeTest/src/GraphicsTools/GraphicsUtilitiesH_test.cpp index 1b634cd..a75edab 100644 --- a/Tests/IncludeTest/src/GraphicsTools/GraphicsUtilitiesH_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/GraphicsUtilitiesH_test.cpp @@ -21,4 +21,4 @@ * of the possibility of such damages. */ -#include "Graphics/GraphicsTools/include/GraphicsUtilities.h" +#include "DiligentCore/Graphics/GraphicsTools/include/GraphicsUtilities.h" diff --git a/Tests/IncludeTest/src/GraphicsTools/ShaderMacroHelperH_test.cpp b/Tests/IncludeTest/src/GraphicsTools/ShaderMacroHelperH_test.cpp index fa9935a..e7c5496 100644 --- a/Tests/IncludeTest/src/GraphicsTools/ShaderMacroHelperH_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/ShaderMacroHelperH_test.cpp @@ -21,4 +21,4 @@ * of the possibility of such damages. */ -#include "Graphics/GraphicsTools/include/ShaderMacroHelper.h" +#include "DiligentCore/Graphics/GraphicsTools/include/ShaderMacroHelper.h" diff --git a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderBaseH_test.cpp b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderBaseH_test.cpp index 0134154..4b0f26a 100644 --- a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderBaseH_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderBaseH_test.cpp @@ -21,4 +21,4 @@ * of the possibility of such damages. */ -#include "Graphics/GraphicsTools/include/TextureUploaderBase.h" +#include "DiligentCore/Graphics/GraphicsTools/include/TextureUploaderBase.h" diff --git a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D11H_test.cpp b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D11H_test.cpp index 86e1b0d..b6abc9b 100644 --- a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D11H_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D11H_test.cpp @@ -22,5 +22,5 @@ */ #if D3D11_SUPPORTED -#include "Graphics/GraphicsTools/include/TextureUploaderD3D11.h" +#include "DiligentCore/Graphics/GraphicsTools/include/TextureUploaderD3D11.h" #endif diff --git a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D12H_test.cpp b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D12H_test.cpp index c4885ff..80f6c01 100644 --- a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D12H_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderD3D12H_test.cpp @@ -22,5 +22,5 @@ */ #if D3D12_SUPPORTED -#include "Graphics/GraphicsTools/include/TextureUploaderD3D12.h" +#include "DiligentCore/Graphics/GraphicsTools/include/TextureUploaderD3D12.h" #endif
\ No newline at end of file diff --git a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderGLH_test.cpp b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderGLH_test.cpp index 51e6682..62947d6 100644 --- a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderGLH_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderGLH_test.cpp @@ -22,5 +22,5 @@ */ #if GL_SUPPORTED || GLES_SUPPORTED -#include "Graphics/GraphicsTools/include/TextureUploaderGL.h" +#include "DiligentCore/Graphics/GraphicsTools/include/TextureUploaderGL.h" #endif
\ No newline at end of file diff --git a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderH_test.cpp b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderH_test.cpp index 7934358..4716de2 100644 --- a/Tests/IncludeTest/src/GraphicsTools/TextureUploaderH_test.cpp +++ b/Tests/IncludeTest/src/GraphicsTools/TextureUploaderH_test.cpp @@ -21,4 +21,4 @@ * of the possibility of such damages. */ -#include "Graphics/GraphicsTools/include/TextureUploader.h" +#include "DiligentCore/Graphics/GraphicsTools/include/TextureUploader.h" |
