summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D12
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-10-20 17:34:56 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-10-20 17:34:56 +0000
commit992859463e9f6ee67a14a7d415e3bc8715201b48 (patch)
treec6d8d047adc95cd3f96e0630cb4574ec8d67806a /Graphics/GraphicsEngineD3D12
parentRenamed DRAW_FLAG_RESOURCE_BUFFERS_INTACT to DRAW_FLAG_DYNAMIC_BUFFERS_INTACT... (diff)
downloadDiligentCore-992859463e9f6ee67a14a7d415e3bc8715201b48.tar.gz
DiligentCore-992859463e9f6ee67a14a7d415e3bc8715201b48.zip
Renamed DRAW_FLAG_DYNAMIC_BUFFERS_INTACT to DRAW_FLAG_DYNAMIC_RESOURCE_BUFFERS_INTACT
Diffstat (limited to 'Graphics/GraphicsEngineD3D12')
-rw-r--r--Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp b/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp
index 32c1d49c..cac5178d 100644
--- a/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp
+++ b/Graphics/GraphicsEngineD3D12/src/DeviceContextD3D12Impl.cpp
@@ -394,7 +394,7 @@ namespace Diligent
if (m_State.pCommittedResourceCache != nullptr)
{
- if (!m_State.bRootViewsCommitted || (Flags & DRAW_FLAG_DYNAMIC_BUFFERS_INTACT) == 0)
+ if (!m_State.bRootViewsCommitted || (Flags & DRAW_FLAG_DYNAMIC_RESOURCE_BUFFERS_INTACT) == 0)
{
m_pPipelineState->GetRootSignature().CommitRootViews(*m_State.pCommittedResourceCache, GraphCtx, false, this);
m_State.bRootViewsCommitted = true;