aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomaric Jodin <89833130+rjodinchr@users.noreply.github.com>2024-04-23 13:44:59 +0200
committerGitHub <noreply@github.com>2024-04-23 13:44:59 +0200
commit5e3ad389ee56fca27c9705d093ae5387ce404df4 (patch)
treec0a02c226ed53e5dac51ffdc45c08bd3a814e928
parent4f7b471f1a66b6d06462cd4ba57628cc0cd087d7 (diff)
downloadspirv-headers-upstream-main.tar.gz
VkspReflection non-sematic: add dispatchId in configuration (#425)upstream-main
This is needed to add new features intercepting buffers content in vksp.
-rw-r--r--include/spirv/unified1/NonSemanticVkspReflection.h2
-rw-r--r--include/spirv/unified1/extinst.nonsemantic.vkspreflection.grammar.json5
2 files changed, 4 insertions, 3 deletions
diff --git a/include/spirv/unified1/NonSemanticVkspReflection.h b/include/spirv/unified1/NonSemanticVkspReflection.h
index 0ef478a..331a3d9 100644
--- a/include/spirv/unified1/NonSemanticVkspReflection.h
+++ b/include/spirv/unified1/NonSemanticVkspReflection.h
@@ -33,7 +33,7 @@ extern "C" {
#endif
enum {
- NonSemanticVkspReflectionRevision = 1,
+ NonSemanticVkspReflectionRevision = 2,
NonSemanticVkspReflectionRevision_BitWidthPadding = 0x7fffffff
};
diff --git a/include/spirv/unified1/extinst.nonsemantic.vkspreflection.grammar.json b/include/spirv/unified1/extinst.nonsemantic.vkspreflection.grammar.json
index bee1bea..379457b 100644
--- a/include/spirv/unified1/extinst.nonsemantic.vkspreflection.grammar.json
+++ b/include/spirv/unified1/extinst.nonsemantic.vkspreflection.grammar.json
@@ -1,5 +1,5 @@
{
- "revision" : 1,
+ "revision" : 2,
"instructions" : [
{
"opname" : "Configuration",
@@ -12,7 +12,8 @@
{"kind" : "LiteralString", "name" : "EntryPoint" },
{"kind" : "LiteralInteger", "name" : "groupCountX" },
{"kind" : "LiteralInteger", "name" : "groupCountY" },
- {"kind" : "LiteralInteger", "name" : "groupCountZ" }
+ {"kind" : "LiteralInteger", "name" : "groupCountZ" },
+ {"kind" : "LiteralInteger", "name" : "dispatchId" }
]
},
{