Skip to content

Commit 5e3ad38

Browse files
authored
VkspReflection non-sematic: add dispatchId in configuration (KhronosGroup#425)
This is needed to add new features intercepting buffers content in vksp.
1 parent 4f7b471 commit 5e3ad38

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

include/spirv/unified1/NonSemanticVkspReflection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ extern "C" {
3333
#endif
3434

3535
enum {
36-
NonSemanticVkspReflectionRevision = 1,
36+
NonSemanticVkspReflectionRevision = 2,
3737
NonSemanticVkspReflectionRevision_BitWidthPadding = 0x7fffffff
3838
};
3939

include/spirv/unified1/extinst.nonsemantic.vkspreflection.grammar.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"revision" : 1,
2+
"revision" : 2,
33
"instructions" : [
44
{
55
"opname" : "Configuration",
@@ -12,7 +12,8 @@
1212
{"kind" : "LiteralString", "name" : "EntryPoint" },
1313
{"kind" : "LiteralInteger", "name" : "groupCountX" },
1414
{"kind" : "LiteralInteger", "name" : "groupCountY" },
15-
{"kind" : "LiteralInteger", "name" : "groupCountZ" }
15+
{"kind" : "LiteralInteger", "name" : "groupCountZ" },
16+
{"kind" : "LiteralInteger", "name" : "dispatchId" }
1617
]
1718
},
1819
{

0 commit comments

Comments
 (0)