Skip to content

Commit

Permalink
VkspReflection non-sematic: add fields to DescriptorSetBuffer (#440)
Browse files Browse the repository at this point in the history
This is needed to add support for texel buffer to vksp.
  • Loading branch information
rjodinchr authored Jul 29, 2024
1 parent db5a00f commit a41bc92
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/spirv/unified1/NonSemanticVkspReflection.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ extern "C" {
#endif

enum {
NonSemanticVkspReflectionRevision = 2,
NonSemanticVkspReflectionRevision = 3,
NonSemanticVkspReflectionRevision_BitWidthPadding = 0x7fffffff
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"revision" : 2,
"revision" : 3,
"instructions" : [
{
"opname" : "Configuration",
Expand Down Expand Up @@ -65,7 +65,9 @@
{ "kind" : "LiteralInteger", "name" : "offset" },
{ "kind" : "LiteralInteger", "name" : "memorySize" },
{ "kind" : "LiteralInteger", "name" : "memoryType" },
{ "kind" : "LiteralInteger", "name" : "bindOffset" }
{ "kind" : "LiteralInteger", "name" : "bindOffset" },
{ "kind" : "LiteralInteger", "name" : "viewFlags" },
{ "kind" : "LiteralInteger", "name" : "viewFormat" }
]
},
{
Expand Down

0 comments on commit a41bc92

Please sign in to comment.