From 40531fc8c936129d9ac0b5ea5a37c4ab4397e2b7 Mon Sep 17 00:00:00 2001 From: assiduous Date: Mon, 27 Jan 2020 23:00:50 -0800 Subject: Fixed typo in HLSL2GLSLConverter C interface --- Graphics/HLSL2GLSLConverterLib/interface/HLSL2GLSLConverter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Graphics') 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 -- cgit v1.2.3