From 57b27983564952bee0100dcce350361aa32c9494 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Sun, 26 Aug 2018 17:09:03 -0700 Subject: Updated core & tools (implemented raw buffers plus other improvements) --- Tests/TestApp/src/TestDrawCommands.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'Tests/TestApp/src/TestDrawCommands.cpp') diff --git a/Tests/TestApp/src/TestDrawCommands.cpp b/Tests/TestApp/src/TestDrawCommands.cpp index f720730..664ad1f 100644 --- a/Tests/TestApp/src/TestDrawCommands.cpp +++ b/Tests/TestApp/src/TestDrawCommands.cpp @@ -759,7 +759,6 @@ void TestDrawCommands::Draw() MappedData.Unmap(); DrawAttribs DrawAttrs; - DrawAttrs.IsIndirect = true; DrawAttrs.pIndirectDrawAttribs = m_pIndirectDrawArgs; m_pDeviceContext->Draw(DrawAttrs); } @@ -773,7 +772,6 @@ void TestDrawCommands::Draw() MappedData[3] = 0; // Start instance MappedData.Unmap(); DrawAttribs DrawAttrs; - DrawAttrs.IsIndirect = true; DrawAttrs.pIndirectDrawAttribs = m_pIndirectDrawArgs; m_pDeviceContext->Draw(DrawAttrs); } @@ -787,7 +785,6 @@ void TestDrawCommands::Draw() MappedData[3] = 2; // Start instance MappedData.Unmap(); DrawAttribs DrawAttrs; - DrawAttrs.IsIndirect = true; DrawAttrs.pIndirectDrawAttribs = m_pIndirectDrawArgs; m_pDeviceContext->Draw(DrawAttrs); } @@ -815,7 +812,6 @@ void TestDrawCommands::Draw() MappedData.Unmap(); DrawAttribs DrawAttrs; - DrawAttrs.IsIndirect = true; DrawAttrs.IsIndexed = true; DrawAttrs.IndexType = VT_UINT32; DrawAttrs.pIndirectDrawAttribs = m_pIndexedIndirectDrawArgs; @@ -833,7 +829,6 @@ void TestDrawCommands::Draw() MappedData.Unmap(); DrawAttribs DrawAttrs; - DrawAttrs.IsIndirect = true; DrawAttrs.IsIndexed = true; DrawAttrs.IndexType = VT_UINT32; DrawAttrs.pIndirectDrawAttribs = m_pIndexedIndirectDrawArgs; @@ -851,7 +846,6 @@ void TestDrawCommands::Draw() MappedData.Unmap(); DrawAttribs DrawAttrs; - DrawAttrs.IsIndirect = true; DrawAttrs.IsIndexed = true; DrawAttrs.IndexType = VT_UINT32; DrawAttrs.pIndirectDrawAttribs = m_pIndexedIndirectDrawArgs; @@ -869,7 +863,6 @@ void TestDrawCommands::Draw() MappedData.Unmap(); DrawAttribs DrawAttrs; - DrawAttrs.IsIndirect = true; DrawAttrs.IsIndexed = true; DrawAttrs.IndexType = VT_UINT32; DrawAttrs.pIndirectDrawAttribs = m_pIndexedIndirectDrawArgs; -- cgit v1.2.3