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-deprecated.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-deprecated.h')
| -rw-r--r-- | include/slang-deprecated.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/slang-deprecated.h b/include/slang-deprecated.h index f210e8c48..32db65007 100644 --- a/include/slang-deprecated.h +++ b/include/slang-deprecated.h @@ -904,6 +904,10 @@ extern "C" SlangReflection* reflection, SlangReflectionType* reflType, char const* name); + SLANG_API SlangReflectionFunction* spReflection_TryResolveOverloadedFunction( + SlangReflection* reflection, + uint32_t candidateCount, + SlangReflectionFunction** candidates); SLANG_API SlangUInt spReflection_getEntryPointCount(SlangReflection* reflection); SLANG_API SlangReflectionEntryPoint* spReflection_getEntryPointByIndex( |
