summaryrefslogtreecommitdiffstats
path: root/Graphics/GLSLTools
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-11-24 17:12:26 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-11-24 17:12:26 +0000
commitfb64625eabe0e39fe12029fcdc8397063e50115f (patch)
treedf1cad084f68ead1304b5cdd7f3fd666823e2709 /Graphics/GLSLTools
parentImproved reporting of resource binding problems in InitializeStaticResources() (diff)
downloadDiligentCore-fb64625eabe0e39fe12029fcdc8397063e50115f.tar.gz
DiligentCore-fb64625eabe0e39fe12029fcdc8397063e50115f.zip
Some minor updates to formatting of debug messages
Diffstat (limited to 'Graphics/GLSLTools')
-rw-r--r--Graphics/GLSLTools/src/SPIRVShaderResources.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GLSLTools/src/SPIRVShaderResources.cpp b/Graphics/GLSLTools/src/SPIRVShaderResources.cpp
index fc881893..6ff18255 100644
--- a/Graphics/GLSLTools/src/SPIRVShaderResources.cpp
+++ b/Graphics/GLSLTools/src/SPIRVShaderResources.cpp
@@ -457,7 +457,7 @@ SPIRVShaderResources::SPIRVShaderResources(IMemoryAllocator& Allocator,
}
if (!VariableFound)
{
- LOG_WARNING_MESSAGE("Variable '", VarName, "' labeled as ", GetShaderVariableTypeLiteralName(VarType), " not found in shader '", shaderDesc.Name, "'");
+ LOG_WARNING_MESSAGE("Variable '", VarName, "' labeled as ", GetShaderVariableTypeLiteralName(VarType), " is not found in shader '", shaderDesc.Name, "'");
}
}
}
@@ -495,7 +495,7 @@ SPIRVShaderResources::SPIRVShaderResources(IMemoryAllocator& Allocator,
if (!SamplerFound)
{
- LOG_WARNING_MESSAGE("Static sampler '", SamName, "' not found in shader '", shaderDesc.Name, "'");
+ LOG_WARNING_MESSAGE("Static sampler '", SamName, "' is not found in shader '", shaderDesc.Name, "'");
}
}
}