#[repr(C)]pub struct DeviceGroupRenderPassBeginInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub device_mask: u32,
pub device_render_area_count: u32,
pub p_device_render_areas: *const Rect2D,
}Expand description
VkDeviceGroupRenderPassBeginInfo
Provided by VK_GRAPHICS_VERSION_1_1.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEVICE_GROUP_RENDER_PASS_BEGIN_INFO.
p_next: *const c_voidOptional, may be null.
device_mask: u32§device_render_area_count: u32Length of p_device_render_areas.
p_device_render_areas: *const Rect2DImplementations§
Source§impl DeviceGroupRenderPassBeginInfo
impl DeviceGroupRenderPassBeginInfo
Sourcepub fn builder<'a>() -> DeviceGroupRenderPassBeginInfoBuilder<'a>
pub fn builder<'a>() -> DeviceGroupRenderPassBeginInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DeviceGroupRenderPassBeginInfo
impl Clone for DeviceGroupRenderPassBeginInfo
Source§fn clone(&self) -> DeviceGroupRenderPassBeginInfo
fn clone(&self) -> DeviceGroupRenderPassBeginInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DeviceGroupRenderPassBeginInfo
impl Default for DeviceGroupRenderPassBeginInfo
Source§fn default() -> DeviceGroupRenderPassBeginInfo
fn default() -> DeviceGroupRenderPassBeginInfo
Returns the “default value” for a type. Read more
impl Copy for DeviceGroupRenderPassBeginInfo
impl ExtendsRenderPassBeginInfo for DeviceGroupRenderPassBeginInfo
impl ExtendsRenderingInfo for DeviceGroupRenderPassBeginInfo
Auto Trait Implementations§
impl Freeze for DeviceGroupRenderPassBeginInfo
impl RefUnwindSafe for DeviceGroupRenderPassBeginInfo
impl !Send for DeviceGroupRenderPassBeginInfo
impl !Sync for DeviceGroupRenderPassBeginInfo
impl Unpin for DeviceGroupRenderPassBeginInfo
impl UnsafeUnpin for DeviceGroupRenderPassBeginInfo
impl UnwindSafe for DeviceGroupRenderPassBeginInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more