summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/TestApp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestApp/src/TestApp.cpp')
-rw-r--r--Tests/TestApp/src/TestApp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/TestApp/src/TestApp.cpp b/Tests/TestApp/src/TestApp.cpp
index 9be7bc4..a252e8d 100644
--- a/Tests/TestApp/src/TestApp.cpp
+++ b/Tests/TestApp/src/TestApp.cpp
@@ -552,7 +552,7 @@ void TestApp::InitializeRenderers()
m_pImmediateContext->ClearRenderTarget(nullptr, ClearColor, RESOURCE_STATE_TRANSITION_MODE_VERIFY);
DrawAttribs DrawAttrs;
DrawAttrs.NumVertices = 3;
- DrawAttrs.Flags = DRAW_FLAG_VERIFY_STATES;
+ DrawAttrs.Flags = DRAW_FLAG_VERIFY_ALL;
m_pRenderScript->Run(m_pImmediateContext, "DrawTris", DrawAttrs);
// This adds transition barrier for pTex1
@@ -688,14 +688,14 @@ void TestApp::Render()
DrawAttribs DrawAttrs;
DrawAttrs.NumVertices = 3;
- DrawAttrs.Flags = DRAW_FLAG_VERIFY_STATES;
+ DrawAttrs.Flags = DRAW_FLAG_VERIFY_ALL;
m_pRenderScript->Run(m_pImmediateContext, "DrawTris", DrawAttrs);
DrawAttrs.IsIndexed = true;
DrawAttrs.NumIndices = 3;
DrawAttrs.IndexType = VT_UINT32;
DrawAttrs.NumInstances = 3;
- DrawAttrs.Flags = DRAW_FLAG_VERIFY_STATES;
+ DrawAttrs.Flags = DRAW_FLAG_VERIFY_ALL;
m_pRenderScript->Run(m_pImmediateContext, "DrawTris", DrawAttrs);
m_pTestDrawCommands->Draw();
m_pTestBufferAccess->Draw((float)dCurrTime);