diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-11-24 17:12:26 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-11-24 17:12:26 +0000 |
| commit | fb64625eabe0e39fe12029fcdc8397063e50115f (patch) | |
| tree | df1cad084f68ead1304b5cdd7f3fd666823e2709 /Graphics/GLSLTools | |
| parent | Improved reporting of resource binding problems in InitializeStaticResources() (diff) | |
| download | DiligentCore-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.cpp | 4 |
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, "'"); } } } |
