diff options
| author | Darren Wihandi <65404740+fairywreath@users.noreply.github.com> | 2025-01-18 02:07:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-17 23:07:16 -0800 |
| commit | a85c350df03c6cdf9b433f58fc0e66affda03e9e (patch) | |
| tree | 3e80ea7121b3b5bb5c17aee88599212b78abec38 /source/slang/slang-ast-modifier.h | |
| parent | 87a08160289c194ddfb337d521893f576ceb9f97 (diff) | |
Implement Quad Control intrinsics (#5981)
Diffstat (limited to 'source/slang/slang-ast-modifier.h')
| -rw-r--r-- | source/slang/slang-ast-modifier.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/source/slang/slang-ast-modifier.h b/source/slang/slang-ast-modifier.h index ee29750a6..36dddd15f 100644 --- a/source/slang/slang-ast-modifier.h +++ b/source/slang/slang-ast-modifier.h @@ -1664,6 +1664,21 @@ class DerivativeGroupLinearAttribute : public Attribute SLANG_AST_CLASS(DerivativeGroupLinearAttribute) }; +class MaximallyReconvergesAttribute : public Attribute +{ + SLANG_AST_CLASS(MaximallyReconvergesAttribute) +}; + +class QuadDerivativesAttribute : public Attribute +{ + SLANG_AST_CLASS(QuadDerivativesAttribute) +}; + +class RequireFullQuadsAttribute : public Attribute +{ + SLANG_AST_CLASS(RequireFullQuadsAttribute) +}; + /// A `[payload]` attribute indicates that a `struct` type will be used as /// a ray payload for `TraceRay()` calls, and thus also as input/output /// for shaders in the ray tracing pipeline that might be invoked for |
