mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-29 14:31:04 +00:00
Recognize SPV_AMD_shader_fragment_mask
This commit is contained in:
parent
c6dfc11880
commit
a91cecfefc
2
CHANGES
2
CHANGES
@ -5,6 +5,8 @@ v2017.1-dev 2017-09-01
|
|||||||
- Type check basic arithmetic operations
|
- Type check basic arithmetic operations
|
||||||
- OpModuleProcessed is only allowed after debug names section and before annotations
|
- OpModuleProcessed is only allowed after debug names section and before annotations
|
||||||
section.
|
section.
|
||||||
|
- Recognize extensions listed on SPIR-V registry,
|
||||||
|
through #25 SPV_AMD_shader_fragment_mask
|
||||||
- Fixes:
|
- Fixes:
|
||||||
#798: spirv-as should fail when given unrecognized long option
|
#798: spirv-as should fail when given unrecognized long option
|
||||||
#800: Inliner: Fix inlining function into header of multi-block loop
|
#800: Inliner: Fix inlining function into header of multi-block loop
|
||||||
|
@ -68,7 +68,8 @@ INSTANTIATE_TEST_CASE_P(ExpectSuccess, ValidateKnownExtensions, Values(
|
|||||||
"SPV_KHR_shader_atomic_counter_ops",
|
"SPV_KHR_shader_atomic_counter_ops",
|
||||||
"SPV_EXT_shader_stencil_export",
|
"SPV_EXT_shader_stencil_export",
|
||||||
"SPV_EXT_shader_viewport_index_layer",
|
"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(
|
INSTANTIATE_TEST_CASE_P(FailSilently, ValidateUnknownExtensions, Values(
|
||||||
|
@ -53,6 +53,7 @@ SPV_KHR_shader_atomic_counter_ops
|
|||||||
SPV_EXT_shader_stencil_export
|
SPV_EXT_shader_stencil_export
|
||||||
SPV_EXT_shader_viewport_index_layer
|
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
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user