diff options
| author | dubiousconst282 <87553666+dubiousconst282@users.noreply.github.com> | 2024-07-24 18:20:06 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-24 14:20:06 -0700 |
| commit | efa8d1ab40c24a15678dd4143c9cc7b7b64e04d8 (patch) | |
| tree | d2df663078d6058dce9fb30920d1ce3415fbb4a4 /include/slang.h | |
| parent | 639576cbe9d9cf604c554fda8dda48485201704f (diff) | |
Add generic descriptor indexing intrinsic (#4389)
* Add ResourceArray intrinsic type
* Move aliased parameter generation to GLSL legalization
* Add DynamicResourceEntry type for proxying layout of GenericResourceArray
* Reimplement as DynamicResource
* Add reflection test
* Don't reuse alias cache between different parameters
* Add dynamic cast extensions for buffer types
* Minor format fix
* Fix VarDecl diagnostics after finding non-appliable initializer candidates
---------
Co-authored-by: Yong He <yonghe@outlook.com>
Diffstat (limited to 'include/slang.h')
| -rw-r--r-- | include/slang.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/slang.h b/include/slang.h index 849532fc8..ec8cb0984 100644 --- a/include/slang.h +++ b/include/slang.h @@ -2154,6 +2154,7 @@ extern "C" SLANG_TYPE_KIND_SPECIALIZED, SLANG_TYPE_KIND_FEEDBACK, SLANG_TYPE_KIND_POINTER, + SLANG_TYPE_KIND_DYNAMIC_RESOURCE, SLANG_TYPE_KIND_COUNT, }; @@ -2780,6 +2781,7 @@ namespace slang Specialized = SLANG_TYPE_KIND_SPECIALIZED, Feedback = SLANG_TYPE_KIND_FEEDBACK, Pointer = SLANG_TYPE_KIND_POINTER, + DynamicResource = SLANG_TYPE_KIND_DYNAMIC_RESOURCE, }; enum ScalarType : SlangScalarTypeIntegral |
