Enum
VkDependencyFlagBits
Bitmask specifying how execution and memory dependencies are formed
Bits which can be set in vkCmdPipelineBarrier::dependencyFlags,
specifying how execution and memory dependencies are formed, are:
typedef enum VkDependencyFlagBits {
VK_DEPENDENCY_BY_REGION_BIT = 0x00000001,
} VkDependencyFlagBits;
VK_DEPENDENCY_BY_REGION_BITspecifies that dependencies will be framebuffer-local.VK_DEPENDENCY_VIEW_LOCAL_BITspecifies that dependencies will be view-local.VK_DEPENDENCY_DEVICE_GROUP_BITspecifies that dependencies are non-device-local.VK_DEPENDENCY_FEEDBACK_LOOP_BIT_EXTspecifies that the render pass will write to and read from the same image using theVK_IMAGE_LAYOUT_ATTACHMENT_FEEDBACK_LOOP_OPTIMAL_EXTlayout.VK_DEPENDENCY_QUEUE_FAMILY_OWNERSHIP_TRANSFER_USE_ALL_STAGES_BIT_KHRspecifies that source and destination stages are not ignored when performing a queue family ownership transfer.