#[repr(C)]pub struct PhysicalDeviceLineRasterizationFeaturesEXT {
pub sType: StructureType,
pub pNext: *mut c_void,
pub rectangularLines: Bool32,
pub bresenhamLines: Bool32,
pub smoothLines: Bool32,
pub stippledRectangularLines: Bool32,
pub stippledBresenhamLines: Bool32,
pub stippledSmoothLines: Bool32,
}Fields§
§sType: StructureType§pNext: *mut c_void§rectangularLines: Bool32§bresenhamLines: Bool32§smoothLines: Bool32§stippledRectangularLines: Bool32§stippledBresenhamLines: Bool32§stippledSmoothLines: Bool32Implementations§
Source§impl PhysicalDeviceLineRasterizationFeaturesEXT
impl PhysicalDeviceLineRasterizationFeaturesEXT
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *mut c_void) -> Self
pub fn rectangularLines(self, rectangularLines: Bool32) -> Self
pub fn bresenhamLines(self, bresenhamLines: Bool32) -> Self
pub fn smoothLines(self, smoothLines: Bool32) -> Self
pub fn stippledRectangularLines(self, stippledRectangularLines: Bool32) -> Self
pub fn stippledBresenhamLines(self, stippledBresenhamLines: Bool32) -> Self
pub fn stippledSmoothLines(self, stippledSmoothLines: Bool32) -> Self
Trait Implementations§
Source§impl Clone for PhysicalDeviceLineRasterizationFeaturesEXT
impl Clone for PhysicalDeviceLineRasterizationFeaturesEXT
Source§fn clone(&self) -> PhysicalDeviceLineRasterizationFeaturesEXT
fn clone(&self) -> PhysicalDeviceLineRasterizationFeaturesEXT
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 PhysicalDeviceLineRasterizationFeaturesEXT
impl Default for PhysicalDeviceLineRasterizationFeaturesEXT
Source§fn default() -> PhysicalDeviceLineRasterizationFeaturesEXT
fn default() -> PhysicalDeviceLineRasterizationFeaturesEXT
Returns the “default value” for a type. Read more
impl Copy for PhysicalDeviceLineRasterizationFeaturesEXT
Auto Trait Implementations§
impl Freeze for PhysicalDeviceLineRasterizationFeaturesEXT
impl RefUnwindSafe for PhysicalDeviceLineRasterizationFeaturesEXT
impl !Send for PhysicalDeviceLineRasterizationFeaturesEXT
impl !Sync for PhysicalDeviceLineRasterizationFeaturesEXT
impl Unpin for PhysicalDeviceLineRasterizationFeaturesEXT
impl UnwindSafe for PhysicalDeviceLineRasterizationFeaturesEXT
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