diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-08-27 00:09:03 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-08-27 00:09:03 +0000 |
| commit | 57b27983564952bee0100dcce350361aa32c9494 (patch) | |
| tree | 99b7ff2a9464ad236578ea725bd7b1b8d858099a /Tests/TestApp/src/TestDrawCommands.cpp | |
| parent | Updated readme: organized projects into a table (diff) | |
| download | DiligentEngine-57b27983564952bee0100dcce350361aa32c9494.tar.gz DiligentEngine-57b27983564952bee0100dcce350361aa32c9494.zip | |
Updated core & tools (implemented raw buffers plus other improvements)
Diffstat (limited to 'Tests/TestApp/src/TestDrawCommands.cpp')
| -rw-r--r-- | Tests/TestApp/src/TestDrawCommands.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
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; |
