diff options
| author | Yong He <yonghe@outlook.com> | 2024-03-21 21:10:48 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-21 21:10:48 -0700 |
| commit | 00474731a90add7c0aaffc3a76d713ae2cecdbbe (patch) | |
| tree | a99e6cd38901de6394c973992fc5ef6b600e3f2b /source/slang/slang-ast-modifier.h | |
| parent | 7a8ef896196ad0d7095412d8558dd9a2542874c8 (diff) | |
Partially implement vk_buffer_ref proposal. (#3814)
Diffstat (limited to 'source/slang/slang-ast-modifier.h')
| -rw-r--r-- | source/slang/slang-ast-modifier.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/slang/slang-ast-modifier.h b/source/slang/slang-ast-modifier.h index 5ab7eae3c..87057b694 100644 --- a/source/slang/slang-ast-modifier.h +++ b/source/slang/slang-ast-modifier.h @@ -741,6 +741,15 @@ class GLSLBindingAttribute : public Attribute int32_t set = 0; }; +class VkAliasedPointerAttribute : public Attribute +{ + SLANG_AST_CLASS(VkAliasedPointerAttribute) +}; + +class VkRestrictPointerAttribute : public Attribute +{ + SLANG_AST_CLASS(VkRestrictPointerAttribute) +}; class GLSLOffsetLayoutAttribute : public Attribute { |
