Skip to content

Commit a41bc92

Browse files
authored
VkspReflection non-sematic: add fields to DescriptorSetBuffer (KhronosGroup#440)
This is needed to add support for texel buffer to vksp.
1 parent db5a00f commit a41bc92

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-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 = 2,
36+
NonSemanticVkspReflectionRevision = 3,
3737
NonSemanticVkspReflectionRevision_BitWidthPadding = 0x7fffffff
3838
};
3939

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"revision" : 2,
2+
"revision" : 3,
33
"instructions" : [
44
{
55
"opname" : "Configuration",
@@ -65,7 +65,9 @@
6565
{ "kind" : "LiteralInteger", "name" : "offset" },
6666
{ "kind" : "LiteralInteger", "name" : "memorySize" },
6767
{ "kind" : "LiteralInteger", "name" : "memoryType" },
68-
{ "kind" : "LiteralInteger", "name" : "bindOffset" }
68+
{ "kind" : "LiteralInteger", "name" : "bindOffset" },
69+
{ "kind" : "LiteralInteger", "name" : "viewFlags" },
70+
{ "kind" : "LiteralInteger", "name" : "viewFormat" }
6971
]
7072
},
7173
{

0 commit comments

Comments
 (0)