Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/KhronosGroup/SPIRV-Headers.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Petit <kevin.petit@arm.com>2021-07-07 21:42:53 +0300
committerKevin Petit <kevin.petit@arm.com>2021-07-07 21:42:53 +0300
commit6c7e7f9f27d2c97595cbc8e5dc0f7547ee18a585 (patch)
tree54182d5618c0a16e95038cae8a5917f188e192af
parentddf3230c14c71e81fc0eae9b781cc4bcc2d1f0f5 (diff)
Fix grammar for PackedVectorFormat
PackedVectorFormat4x8BitKHR should be enabled by the SPV_KHR_integer_dot_product extension that first introduced it and not the DotProductInput4x8BitPackedKHR as per the extension specification. See http://htmlpreview.github.io/?https://github.com/KhronosGroup/SPIRV-Registry/blob/master/extensions/KHR/SPV_KHR_integer_dot_product.html Signed-off-by: Kevin Petit <kevin.petit@arm.com>
-rw-r--r--include/spirv/unified1/spirv.core.grammar.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spirv/unified1/spirv.core.grammar.json b/include/spirv/unified1/spirv.core.grammar.json
index 2852c09..7ab318f 100644
--- a/include/spirv/unified1/spirv.core.grammar.json
+++ b/include/spirv/unified1/spirv.core.grammar.json
@@ -13509,7 +13509,7 @@
{
"enumerant" : "PackedVectorFormat4x8BitKHR",
"value" : 0,
- "capabilities" : [ "DotProductInput4x8BitPackedKHR" ],
+ "extensions" : [ "SPV_KHR_integer_dot_product" ],
"version" : "None"
}
]