summaryrefslogtreecommitdiffstats
path: root/Graphics
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-01-28 07:00:50 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-01-28 07:00:50 +0000
commit40531fc8c936129d9ac0b5ea5a37c4ab4397e2b7 (patch)
treee509e3247fccd876c71e99ff7b1eebef0d7582d9 /Graphics
parentFixed iOS build issues (diff)
downloadDiligentCore-40531fc8c936129d9ac0b5ea5a37c4ab4397e2b7.tar.gz
DiligentCore-40531fc8c936129d9ac0b5ea5a37c4ab4397e2b7.zip
Fixed typo in HLSL2GLSLConverter C interface
Diffstat (limited to 'Graphics')
-rw-r--r--Graphics/HLSL2GLSLConverterLib/interface/HLSL2GLSLConverter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/HLSL2GLSLConverterLib/interface/HLSL2GLSLConverter.h b/Graphics/HLSL2GLSLConverterLib/interface/HLSL2GLSLConverter.h
index 5d956886..07d68c5a 100644
--- a/Graphics/HLSL2GLSLConverterLib/interface/HLSL2GLSLConverter.h
+++ b/Graphics/HLSL2GLSLConverterLib/interface/HLSL2GLSLConverter.h
@@ -75,7 +75,7 @@ typedef struct IHLSL2GLSLConversionStream
// clang-format off
-# define IHLSL2GLSLConversionStream_Convert(This) (This)->pVtbl->HLSL2GLSLConversionStream.Convert((IHLSL2GLSLConversionStream*)(This), __VA_ARGS__)
+# define IHLSL2GLSLConversionStream_Convert(This, ...) (This)->pVtbl->HLSL2GLSLConversionStream.Convert((IHLSL2GLSLConversionStream*)(This), __VA_ARGS__)
// clang-format on
@@ -121,7 +121,7 @@ typedef struct IHLSL2GLSLConverter
// clang-format off
-# define IHLSL2GLSLConverter_CreateStream(This) (This)->pVtbl->HLSL2GLSLConverter.CreateStream((IHLSL2GLSLConverter*)(This), __VA_ARGS__)
+# define IHLSL2GLSLConverter_CreateStream(This, ...) (This)->pVtbl->HLSL2GLSLConverter.CreateStream((IHLSL2GLSLConverter*)(This), __VA_ARGS__)
// clang-format on