summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/RenderScriptTest.cpp
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-02-17 22:06:28 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-02-17 22:06:28 +0000
commit7b046238346958733109d1840ff6aae026b0f95c (patch)
treeb883af1835d23df9b30fb06eb179a3a873d60b95 /Tests/TestApp/src/RenderScriptTest.cpp
parentAdded test result reporting (diff)
downloadDiligentEngine-7b046238346958733109d1840ff6aae026b0f95c.tar.gz
DiligentEngine-7b046238346958733109d1840ff6aae026b0f95c.zip
Fixed test app runtime issues on iOS
Diffstat (limited to 'Tests/TestApp/src/RenderScriptTest.cpp')
-rw-r--r--Tests/TestApp/src/RenderScriptTest.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Tests/TestApp/src/RenderScriptTest.cpp b/Tests/TestApp/src/RenderScriptTest.cpp
index 0b8242a..b4010d7 100644
--- a/Tests/TestApp/src/RenderScriptTest.cpp
+++ b/Tests/TestApp/src/RenderScriptTest.cpp
@@ -36,6 +36,11 @@ using namespace Diligent;
RenderScriptTest::RenderScriptTest( IRenderDevice *pRenderDevice, IDeviceContext *pContext ) :
UnitTestBase("RenderScript test")
{
+#if PLATFORM_IOS
+ SetStatus(TestResult::Skipped);
+ return;
+#endif
+
RefCntAutoPtr<ITexture> pTestGlobalTexture;
{
TextureDesc TexDesc;