summaryrefslogtreecommitdiffstats
path: root/Graphics
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-02-22 15:56:41 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-02-22 15:56:41 +0000
commitf08df79eb5e2e97dda089aa717ae4a6bf9ff8518 (patch)
tree9173bfb6b5794e0f009cc37f2246bc28d5402ebe /Graphics
parentSome GLES compilers require whitespace after the macro without arguments (fix... (diff)
downloadDiligentCore-f08df79eb5e2e97dda089aa717ae4a6bf9ff8518.tar.gz
DiligentCore-f08df79eb5e2e97dda089aa717ae4a6bf9ff8518.zip
Fixed typo
Diffstat (limited to 'Graphics')
-rw-r--r--Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp b/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp
index 556fb83a..44506ed2 100644
--- a/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp
+++ b/Graphics/HLSL2GLSLConverterLib/src/HLSL2GLSLConverterImpl.cpp
@@ -4110,7 +4110,7 @@ void HLSL2GLSLConverterImpl::ConversionStream::ProcessShaderDeclaration( TokenLi
std::stringstream ReturnHandlerSS;
const Char *ReturnMacroName = "_RETURN_";
// Some GLES compilers cannot properly handle macros with empty argument lists, such as _RETURN_().
- // Also, some compilers generate an error if there is no whitespace after the macro witout arguments: _RET_VAL_{
+ // Also, some compilers generate an error if there is no whitespace after the macro witout arguments: _RETURN_{
ReturnHandlerSS << "#define " << ReturnMacroName << (bIsVoid ? "" : "(_RET_VAL_)") << " {\\\n";
String GlobalVariables, Prologue;