summaryrefslogtreecommitdiff
path: root/tools/slang-reflection-test/slang-reflection-test-main.cpp
diff options
context:
space:
mode:
authordubiousconst282 <87553666+dubiousconst282@users.noreply.github.com>2024-07-24 18:20:06 -0300
committerGitHub <noreply@github.com>2024-07-24 14:20:06 -0700
commitefa8d1ab40c24a15678dd4143c9cc7b7b64e04d8 (patch)
treed2df663078d6058dce9fb30920d1ce3415fbb4a4 /tools/slang-reflection-test/slang-reflection-test-main.cpp
parent639576cbe9d9cf604c554fda8dda48485201704f (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 'tools/slang-reflection-test/slang-reflection-test-main.cpp')
-rw-r--r--tools/slang-reflection-test/slang-reflection-test-main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/slang-reflection-test/slang-reflection-test-main.cpp b/tools/slang-reflection-test/slang-reflection-test-main.cpp
index 8866661b8..fb8d4e30a 100644
--- a/tools/slang-reflection-test/slang-reflection-test-main.cpp
+++ b/tools/slang-reflection-test/slang-reflection-test-main.cpp
@@ -827,6 +827,10 @@ static void emitReflectionTypeInfoJSON(
writer.maybeComma();
emitReflectionNameInfoJSON(writer, type->getName());
break;
+ case slang::TypeReflection::Kind::DynamicResource:
+ writer.maybeComma();
+ writer << "\"kind\": \"DynamicResource\"";
+ break;
default:
assert(!"unhandled case");
break;