summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-02-19 04:45:48 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-02-19 04:45:48 +0000
commite55f3cd48a7aa73b780537de6e484fde3892ba6b (patch)
tree11f0dd3ff7b20d56dbd2e3559858483646826200 /Graphics/GraphicsEngineVulkan
parentFixed typo (diff)
downloadDiligentCore-e55f3cd48a7aa73b780537de6e484fde3892ba6b.tar.gz
DiligentCore-e55f3cd48a7aa73b780537de6e484fde3892ba6b.zip
Minor updates in D3D12 and Vk backends: not committing vertex buffers when PSO doesn't use any
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
index c6378abe..0200476d 100644
--- a/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
+++ b/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
@@ -411,7 +411,7 @@ namespace Diligent
m_CommandBuffer.BindIndexBuffer(m_pIndexBuffer->GetVkBuffer(), m_IndexDataStartOffset + m_pIndexBuffer->GetDynamicOffset(m_ContextId, this), vkIndexType);
}
- if (!m_State.CommittedVBsUpToDate)
+ if (!m_State.CommittedVBsUpToDate && m_pPipelineState->GetNumBufferSlotsUsed() > 0)
{
CommitVkVertexBuffers();
}