summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-03-06 08:19:44 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-03-06 08:19:44 +0000
commitbca36cafd2bbffd93223e07b9f899798b63c363d (patch)
tree8354d8e1ea32a997ebc9ed94889d305bdf6698cb /Tests/TestApp/src
parentFinal updates to make GL backend work (diff)
downloadDiligentEngine-bca36cafd2bbffd93223e07b9f899798b63c363d.tar.gz
DiligentEngine-bca36cafd2bbffd93223e07b9f899798b63c363d.zip
Fixed metal compile issues
Diffstat (limited to 'Tests/TestApp/src')
-rw-r--r--Tests/TestApp/src/TestApp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/TestApp/src/TestApp.cpp b/Tests/TestApp/src/TestApp.cpp
index dcfca89..fdf5ff7 100644
--- a/Tests/TestApp/src/TestApp.cpp
+++ b/Tests/TestApp/src/TestApp.cpp
@@ -47,7 +47,7 @@
#endif
#if METAL_SUPPORTED
-# include "RenderDeviceFactoryMtl.h"
+# include "EngineFactoryMtl.h"
#endif
#include "FileSystem.h"
@@ -312,7 +312,7 @@ void TestApp::InitializeDiligentEngine(
#if METAL_SUPPORTED
case DeviceType::Metal:
{
- EngineMtlAttribs MtlAttribs;
+ EngineMtlCreateInfo MtlAttribs;
ppContexts.resize(1 + NumDeferredCtx);
auto *pFactoryMtl = GetEngineFactoryMtl();