From bb3864918e160e0526e4577579ac4b77cb2eaf19 Mon Sep 17 00:00:00 2001 From: slangbot <186143334+slangbot@users.noreply.github.com> Date: Thu, 27 Feb 2025 06:16:36 +0000 Subject: [PATCH] format code --- include/slang.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/slang.h b/include/slang.h index 5fcb157d86..04ff25ee97 100644 --- a/include/slang.h +++ b/include/slang.h @@ -4357,8 +4357,9 @@ struct IModule : public IComponentType SLANG_COM_INTERFACE(0xc720e64, 0x8722, 0x4d31, {0x89, 0x90, 0x63, 0x8a, 0x98, 0xb1, 0xc2, 0x79}) /// Find and an entry point by name. - /// Note that this does not work in case the function is not explicitly designated as an entry point, e.g. using a `[shader("...")]` attribute. - /// In such cases, consider using `IModule::findAndCheckEntryPoint` instead. + /// Note that this does not work in case the function is not explicitly designated as an entry + /// point, e.g. using a `[shader("...")]` attribute. In such cases, consider using + /// `IModule::findAndCheckEntryPoint` instead. virtual SLANG_NO_THROW SlangResult SLANG_MCALL findEntryPointByName(char const* name, IEntryPoint** outEntryPoint) = 0;