Enum
VkFrameBoundaryFlagBitsEXT
Bitmask specifying whether a queue submission is the last one for a given frame
The bit which can be set in VkFrameBoundaryEXT::flags is:
typedef enum VkFrameBoundaryFlagBitsEXT {
VK_FRAME_BOUNDARY_FRAME_END_BIT_EXT = 0x00000001,
} VkFrameBoundaryFlagBitsEXT;
pub struct FrameBoundaryFlagBitsEXT(u32);
impl FrameBoundaryFlagBitsEXT {
pub const FRAME_END: Self = 0x00000001;
}
VK_FRAME_BOUNDARY_FRAME_END_BIT_EXTspecifies that this queue submission is the last one for this frame, i.e. once this queue submission has terminated, then the work for this frame is completed.
Parent
VK_EXT_frame_boundaryType
Enum