summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineD3D12
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/GraphicsEngineD3D12
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/GraphicsEngineD3D12')
-rw-r--r--Graphics/GraphicsEngineD3D12/src/ShaderResourceBindingD3D12Impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineD3D12/src/ShaderResourceBindingD3D12Impl.cpp b/Graphics/GraphicsEngineD3D12/src/ShaderResourceBindingD3D12Impl.cpp
index 4498a9eb..bd4d4d01 100644
--- a/Graphics/GraphicsEngineD3D12/src/ShaderResourceBindingD3D12Impl.cpp
+++ b/Graphics/GraphicsEngineD3D12/src/ShaderResourceBindingD3D12Impl.cpp
@@ -194,7 +194,7 @@ void ShaderResourceBindingD3D12Impl::InitializeStaticResources(const IPipelineSt
auto* pShader = pPSO12->GetShader<ShaderD3D12Impl>(s);
LOG_ERROR_MESSAGE("Static resources in SRB of PSO '", pPSO12->GetDesc().Name, "' will not be successfully initialized "
"because not all static resource bindings in shader '", pShader->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