summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D11
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-04-26 05:50:28 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-04-26 05:50:28 +0000
commite10187feeb735c3b450d95976740a6214151e298 (patch)
tree00592afe05be7445fdba73603ac1e054e09e7ced /Graphics/GraphicsEngineD3D11
parentImproved error messages about incorrect resource states specified in the barrier (diff)
downloadDiligentCore-e10187feeb735c3b450d95976740a6214151e298.tar.gz
DiligentCore-e10187feeb735c3b450d95976740a6214151e298.zip
Few minor updates
Diffstat (limited to 'Graphics/GraphicsEngineD3D11')
-rw-r--r--Graphics/GraphicsEngineD3D11/src/ShaderResourceBindingD3D11Impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D11/src/ShaderResourceBindingD3D11Impl.cpp b/Graphics/GraphicsEngineD3D11/src/ShaderResourceBindingD3D11Impl.cpp
index b204a3dd..d6b4327c 100644
--- a/Graphics/GraphicsEngineD3D11/src/ShaderResourceBindingD3D11Impl.cpp
+++ b/Graphics/GraphicsEngineD3D11/src/ShaderResourceBindingD3D11Impl.cpp
@@ -144,7 +144,7 @@ void ShaderResourceBindingD3D11Impl::InitializeStaticResources(const IPipelineSt
{
LOG_ERROR_MESSAGE("Static resources in SRB of PSO '", pPSOD3D11->GetDesc().Name, "' will not be successfully initialized "
"because not all static resource bindings in shader '", pShaderD3D11->GetDesc().Name, "' are valid. "
- "Please make sure you bind all static resources to the shader before calling InitializeStaticResources() "
+ "Please make sure you bind all static resources to PSO before calling InitializeStaticResources() "
"directly or indirectly by passing InitStaticResources=true to CreateShaderResourceBinding() method.");
}
#endif