diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-04-26 05:50:28 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-04-26 05:50:28 +0000 |
| commit | e10187feeb735c3b450d95976740a6214151e298 (patch) | |
| tree | 00592afe05be7445fdba73603ac1e054e09e7ced /Graphics/GraphicsEngineVulkan | |
| parent | Improved error messages about incorrect resource states specified in the barrier (diff) | |
| download | DiligentCore-e10187feeb735c3b450d95976740a6214151e298.tar.gz DiligentCore-e10187feeb735c3b450d95976740a6214151e298.zip | |
Few minor updates
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
| -rw-r--r-- | Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp index 43e99202..723cde3c 100644 --- a/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp +++ b/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp @@ -671,7 +671,7 @@ void PipelineStateVkImpl::InitializeStaticSRBResources(ShaderResourceCacheVk& Re const auto* pShaderVk = GetShader<const ShaderVkImpl>(s); LOG_ERROR_MESSAGE("Static resources in SRB of PSO '", GetDesc().Name, "' will not be successfully initialized " "because not all static resource bindings in shader '", pShaderVk->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 |
