diff options
| author | Yong He <yonghe@outlook.com> | 2025-08-06 01:07:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-06 08:07:41 +0000 |
| commit | 68b0125226464cb3c9e9b7f50bfb53cda97723b4 (patch) | |
| tree | 5f0833c6d9aa759b2769f7f6ac9b3ca6ed9a10f0 /include/slang.h | |
| parent | 83675103a1a4fefde11b314aed26f4d37860efe7 (diff) | |
Add reflection api for overload candidate filtering. (#8066)
* Add reflection api for overload candidate filtering.
* Fix API.
* Fix.
* Update build.
* Update test.
* Update formatting.
Diffstat (limited to 'include/slang.h')
| -rw-r--r-- | include/slang.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/slang.h b/include/slang.h index 65449a1ff..7462644a2 100644 --- a/include/slang.h +++ b/include/slang.h @@ -502,6 +502,12 @@ convention for interface methods. #include <stddef.h> #endif // ! SLANG_NO_STDDEF +#ifdef SLANG_NO_DEPRECATION + #define SLANG_DEPRECATED +#else + #define SLANG_DEPRECATED [[deprecated]] +#endif + #ifdef __cplusplus extern "C" { @@ -3345,6 +3351,16 @@ struct ShaderReflection name); } + SLANG_DEPRECATED FunctionReflection* tryResolveOverloadedFunction( + uint32_t candidateCount, + FunctionReflection** candidates) + { + return (FunctionReflection*)spReflection_TryResolveOverloadedFunction( + (SlangReflection*)this, + candidateCount, + (SlangReflectionFunction**)candidates); + } + VariableReflection* findVarByNameInType(TypeReflection* type, const char* name) { return (VariableReflection*)spReflection_FindVarByNameInType( |
