diff options
author | Lei Zhang <antiagainst@gmail.com> | 2018-03-19 19:55:17 -0400 |
---|---|---|
committer | Lei Zhang <antiagainst@gmail.com> | 2018-03-19 19:55:17 -0400 |
commit | edd044010e46ca05f62920b38d7f201910c2c590 (patch) | |
tree | 9353a7986cadbae3770942e040d6b3a70f9da5db | |
parent | 9a978611040166dae4d197a40b61e9fa3bd21b9c (diff) | |
download | SPIRV-Headers-edd044010e46ca05f62920b38d7f201910c2c590.tar.gz SPIRV-Headers-edd044010e46ca05f62920b38d7f201910c2c590.tar.bz2 SPIRV-Headers-edd044010e46ca05f62920b38d7f201910c2c590.zip |
Add missing extensions on some symbols
For the following extensions:
* SPV_KHR_post_depth_coverage
* SPV_EXT_fragment_fully_covered
* SPV_AMD_shader_fragment_mask
-rw-r--r-- | include/spirv/unified1/spirv.core.grammar.json | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/spirv/unified1/spirv.core.grammar.json b/include/spirv/unified1/spirv.core.grammar.json index 901d0de..01168de 100644 --- a/include/spirv/unified1/spirv.core.grammar.json +++ b/include/spirv/unified1/spirv.core.grammar.json @@ -3796,6 +3796,7 @@ { "kind" : "IdRef", "name" : "'Coordinate'" } ], "capabilities" : [ "FragmentMaskAMD" ], + "extensions" : [ "SPV_AMD_shader_fragment_mask" ], "version" : "None" }, { @@ -3809,6 +3810,7 @@ { "kind" : "IdRef", "name" : "'Fragment Index'" } ], "capabilities" : [ "FragmentMaskAMD" ], + "extensions" : [ "SPV_AMD_shader_fragment_mask" ], "version" : "None" }, { @@ -4555,6 +4557,7 @@ "enumerant" : "PostDepthCoverage", "value" : 4446, "capabilities" : [ "SampleMaskPostDepthCoverage" ], + "extensions" : [ "SPV_KHR_post_depth_coverage" ], "version" : "None" }, { @@ -5964,6 +5967,7 @@ "enumerant" : "FullyCoveredEXT", "value" : 5264, "capabilities" : [ "FragmentFullyCoveredEXT" ], + "extensions" : [ "SPV_EXT_fragment_fully_covered" ], "version" : "None" } ] |