From 8df96e2df8decdd134beae14bf2cec68b6dd5230 Mon Sep 17 00:00:00 2001 From: assiduous Date: Thu, 12 Dec 2019 17:48:34 -0800 Subject: Removed RenderScript & Lua; updated submodules --- Tests/TestApp/src/TestRenderTarget.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Tests/TestApp/src/TestRenderTarget.cpp') diff --git a/Tests/TestApp/src/TestRenderTarget.cpp b/Tests/TestApp/src/TestRenderTarget.cpp index 7a18990..033dffc 100644 --- a/Tests/TestApp/src/TestRenderTarget.cpp +++ b/Tests/TestApp/src/TestRenderTarget.cpp @@ -24,7 +24,6 @@ #include "pch.h" #include "TestRenderTarget.h" #include "GraphicsUtilities.h" -#include "ConvenienceFunctions.h" using namespace Diligent; @@ -40,6 +39,7 @@ void TestRenderTarget::Init( IRenderDevice *pDevice, IDeviceContext *pDeviceCont return; #endif +#if 0 m_pRenderDevice = pDevice; m_pDeviceContext = pDeviceContext; m_pRenderScript = CreateRenderScriptFromFile( "TestRenderTargets.lua", pDevice, pDeviceContext, [&]( ScriptParser *pScriptParser ) @@ -54,13 +54,15 @@ void TestRenderTarget::Init( IRenderDevice *pDevice, IDeviceContext *pDeviceCont pScriptParser->SetGlobalVariable( "XExt", fXExtent ); pScriptParser->SetGlobalVariable( "YExt", fYExtent ); } ); +#endif } void TestRenderTarget::Draw() { if(!m_pDeviceContext) return; - +#if 0 m_pRenderScript->Run( m_pDeviceContext, "Render" ); SetStatus(TestResult::Succeeded); +#endif } -- cgit v1.2.3