summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2021-01-25 06:30:53 +0000
committerassiduous <assiduous@diligentgraphics.com>2021-01-25 06:30:53 +0000
commit06a7fe2408423dd2a51df21ead4db34b7a4b925d (patch)
tree9424ecd7242dc6e106bd69e0fa7a8c516889d396 /Graphics/GraphicsEngineVulkan
parentAdded first couple of pipeline resource signature tests (diff)
downloadDiligentCore-06a7fe2408423dd2a51df21ead4db34b7a4b925d.tar.gz
DiligentCore-06a7fe2408423dd2a51df21ead4db34b7a4b925d.zip
Pipeline resource signature: added static sampler test
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp b/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp
index ce8114b9..cf6e366a 100644
--- a/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp
+++ b/Graphics/GraphicsEngineVulkan/src/PipelineStateVkImpl.cpp
@@ -854,7 +854,7 @@ void PipelineStateVkImpl::InitPipelineLayout(const PipelineStateCreateInfo& Crea
if (!m_PipelineLayout.GetResourceInfo(Res.Name, ShaderType, Info))
{
LOG_ERROR_AND_THROW("Shader '", pShader->GetDesc().Name, "' contains resource with name '", Res.Name,
- "' that is not presented in any pipeline resource signature that is used to create pipeline state '",
+ "' that is not present in any pipeline resource signature that is used to create pipeline state '",
m_Desc.Name, "'.");
}
SPIRV[Res.BindingDecorationOffset] = Info.BindingIndex;