summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-10-20 17:15:26 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-10-20 17:15:26 +0000
commit5140b4496aec227615bcbb5f94127066631a69d6 (patch)
tree15163416d7aa608cd5f64325dd348e36115e88d1 /Graphics/GraphicsEngineVulkan
parentAdded DRAW_FLAG_RESOURCE_BUFFERS_INTACT flag (API Version 240036) (diff)
downloadDiligentCore-5140b4496aec227615bcbb5f94127066631a69d6.tar.gz
DiligentCore-5140b4496aec227615bcbb5f94127066631a69d6.zip
Renamed DRAW_FLAG_RESOURCE_BUFFERS_INTACT to DRAW_FLAG_DYNAMIC_BUFFERS_INTACT + updated documentation
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 454429b8..e4ca2a56 100644
--- a/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
+++ b/Graphics/GraphicsEngineVulkan/src/DeviceContextVkImpl.cpp
@@ -422,7 +422,7 @@ namespace Diligent
if (m_DescrSetBindInfo.DynamicOffsetCount != 0)
{
- if (!m_DescrSetBindInfo.DynamicDescriptorsBound || (Flags & DRAW_FLAG_RESOURCE_BUFFERS_INTACT) == 0)
+ if (!m_DescrSetBindInfo.DynamicDescriptorsBound || (Flags & DRAW_FLAG_DYNAMIC_BUFFERS_INTACT) == 0)
{
m_pPipelineState->BindDescriptorSetsWithDynamicOffsets(GetCommandBuffer(), m_ContextId, this, m_DescrSetBindInfo);
}