summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/TestComputeShaders.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestApp/src/TestComputeShaders.cpp')
-rw-r--r--Tests/TestApp/src/TestComputeShaders.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tests/TestApp/src/TestComputeShaders.cpp b/Tests/TestApp/src/TestComputeShaders.cpp
index 9d6116c..30a3023 100644
--- a/Tests/TestApp/src/TestComputeShaders.cpp
+++ b/Tests/TestApp/src/TestComputeShaders.cpp
@@ -24,7 +24,6 @@
#include "pch.h"
#include "TestComputeShaders.h"
#include "GraphicsUtilities.h"
-#include "ConvenienceFunctions.h"
using namespace Diligent;
@@ -40,7 +39,7 @@ void TestComputeShaders::Init( IRenderDevice *pDevice, IDeviceContext *pContext,
SetStatus(TestResult::Skipped, "Compute shaders are not supported");
return;
}
-
+#if 0
m_pRenderDevice = pDevice;
m_pDeviceContext = pContext;
const auto* BackBufferFmt = pDevice->GetTextureFormatInfo(pSwapChain->GetDesc().ColorBufferFormat).Name;
@@ -50,13 +49,16 @@ void TestComputeShaders::Init( IRenderDevice *pDevice, IDeviceContext *pContext,
pScriptParser->SetGlobalVariable( "extBackBufferFormat", BackBufferFmt );
pScriptParser->SetGlobalVariable( "extDepthBufferFormat", DepthBufferFmt );
} );
+#endif
}
void TestComputeShaders::Draw()
{
+#if 0
if(!m_pDeviceContext)
return;
m_pRenderScript->Run( m_pDeviceContext, "Render" );
SetStatus(TestResult::Succeeded);
+#endif
}