Recognize SPV_AMD_shader_fragment_mask

This commit is contained in:
David Neto 2017-09-14 10:35:22 -04:00
parent c6dfc11880
commit a91cecfefc
3 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,8 @@ v2017.1-dev 2017-09-01
- Type check basic arithmetic operations
- OpModuleProcessed is only allowed after debug names section and before annotations
section.
- Recognize extensions listed on SPIR-V registry,
through #25 SPV_AMD_shader_fragment_mask
- Fixes:
#798: spirv-as should fail when given unrecognized long option
#800: Inliner: Fix inlining function into header of multi-block loop

View File

@ -68,7 +68,8 @@ INSTANTIATE_TEST_CASE_P(ExpectSuccess, ValidateKnownExtensions, Values(
"SPV_KHR_shader_atomic_counter_ops",
"SPV_EXT_shader_stencil_export",
"SPV_EXT_shader_viewport_index_layer",
"SPV_AMD_shader_image_load_store_lod"
"SPV_AMD_shader_image_load_store_lod",
"SPV_AMD_shader_fragment_mask"
));
INSTANTIATE_TEST_CASE_P(FailSilently, ValidateUnknownExtensions, Values(

View File

@ -53,6 +53,7 @@ SPV_KHR_shader_atomic_counter_ops
SPV_EXT_shader_stencil_export
SPV_EXT_shader_viewport_index_layer
SPV_AMD_shader_image_load_store_lod
SPV_AMD_shader_fragment_mask
"""