#[repr(C)]pub struct PhysicalDeviceMultiviewFeatures {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub multiview: u32,
pub multiview_geometry_shader: u32,
pub multiview_tessellation_shader: u32,
}Expand description
VkPhysicalDeviceMultiviewFeatures
Provided by VK_GRAPHICS_VERSION_1_1.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MULTIVIEW_FEATURES.
p_next: *mut c_voidOptional, may be null.
multiview: u32§multiview_geometry_shader: u32§multiview_tessellation_shader: u32Implementations§
Source§impl PhysicalDeviceMultiviewFeatures
impl PhysicalDeviceMultiviewFeatures
Sourcepub fn builder<'a>() -> PhysicalDeviceMultiviewFeaturesBuilder<'a>
pub fn builder<'a>() -> PhysicalDeviceMultiviewFeaturesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDeviceMultiviewFeatures
impl Clone for PhysicalDeviceMultiviewFeatures
Source§fn clone(&self) -> PhysicalDeviceMultiviewFeatures
fn clone(&self) -> PhysicalDeviceMultiviewFeatures
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 moreimpl Copy for PhysicalDeviceMultiviewFeatures
impl ExtendsDeviceCreateInfo for PhysicalDeviceMultiviewFeatures
impl ExtendsPhysicalDeviceFeatures2 for PhysicalDeviceMultiviewFeatures
Auto Trait Implementations§
impl Freeze for PhysicalDeviceMultiviewFeatures
impl RefUnwindSafe for PhysicalDeviceMultiviewFeatures
impl !Send for PhysicalDeviceMultiviewFeatures
impl !Sync for PhysicalDeviceMultiviewFeatures
impl Unpin for PhysicalDeviceMultiviewFeatures
impl UnsafeUnpin for PhysicalDeviceMultiviewFeatures
impl UnwindSafe for PhysicalDeviceMultiviewFeatures
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