summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngine
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-10-24 16:29:51 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-10-24 16:29:51 +0000
commitde8120ed75510f7e5a98243156eced9ba96f84ca (patch)
tree79e07829a5811dc34c09592df9a6da5208794944 /Graphics/GraphicsEngine
parentAnother attempt to fix gcc/clang build (diff)
downloadDiligentCore-de8120ed75510f7e5a98243156eced9ba96f84ca.tar.gz
DiligentCore-de8120ed75510f7e5a98243156eced9ba96f84ca.zip
Vk backend: few minor updates
Diffstat (limited to 'Graphics/GraphicsEngine')
-rw-r--r--Graphics/GraphicsEngine/include/DeviceContextBase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngine/include/DeviceContextBase.h b/Graphics/GraphicsEngine/include/DeviceContextBase.h
index f468f83a..7c67dd16 100644
--- a/Graphics/GraphicsEngine/include/DeviceContextBase.h
+++ b/Graphics/GraphicsEngine/include/DeviceContextBase.h
@@ -373,7 +373,7 @@ inline bool DeviceContextBase<BaseInterface,ImplementationTraits> ::
{
if (m_pPipelineState->IsIncompatibleWith(pShaderResourceBinding->GetPipelineState()))
{
- LOG_ERROR_MESSAGE("Shader resource binding object is not compatible with the currently bound pipeline state");
+ LOG_ERROR_MESSAGE("Shader resource binding object is not compatible with the currently bound pipeline state '", m_pPipelineState->GetDesc().Name, '\'');
return false;
}
}