§ 7.1.2 currently defines VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BIT as
[...] specifies the execution of all graphics pipeline stages, and is equivalent to the logical OR of [list of bits]
At the same time, VK_PIPELINE_STAGE_2_ALL_COMMANDS_BIT is defined as (emphasis mine)
[...] specifies all operations performed by all commands supported on the queue it is used with.
While ALL_COMMANDS explicitely mentions that only supported features are included, ALL_GRAPHICS doesn't; furthermore, it is specified as being equivalent to a logical OR of all the specific bits. Since a stage mask must not contain unsupported features, this could be interpreted as that ALL_GRAPHICS cannot be used unless all specific features are supported by the device.
The validation layers do interpret ALL_GRAPHICS to only include supported features, which is most likely what is intended.
If that is the case, the wording should be changed to make clear that it's the logical OR of all supported bits.
§ 7.1.2 currently defines
VK_PIPELINE_STAGE_2_ALL_GRAPHICS_BITasAt the same time,
VK_PIPELINE_STAGE_2_ALL_COMMANDS_BITis defined as (emphasis mine)While
ALL_COMMANDSexplicitely mentions that only supported features are included,ALL_GRAPHICSdoesn't; furthermore, it is specified as being equivalent to a logical OR of all the specific bits. Since a stage mask must not contain unsupported features, this could be interpreted as thatALL_GRAPHICScannot be used unless all specific features are supported by the device.The validation layers do interpret
ALL_GRAPHICSto only include supported features, which is most likely what is intended.If that is the case, the wording should be changed to make clear that it's the logical OR of all supported bits.