[][src]Struct vulkanalia::vk::PhysicalDeviceConservativeRasterizationPropertiesEXT

#[repr(C)]pub struct PhysicalDeviceConservativeRasterizationPropertiesEXT {
    pub s_type: StructureType,
    pub next: *mut c_void,
    pub primitive_overestimation_size: f32,
    pub max_extra_primitive_overestimation_size: f32,
    pub extra_primitive_overestimation_size_granularity: f32,
    pub primitive_underestimation: u32,
    pub conservative_point_and_line_rasterization: u32,
    pub degenerate_triangles_rasterized: u32,
    pub degenerate_lines_rasterized: u32,
    pub fully_covered_fragment_shader_input_variable: u32,
    pub conservative_rasterization_post_depth_coverage: u32,
}

Fields

s_type: StructureTypenext: *mut c_voidprimitive_overestimation_size: f32max_extra_primitive_overestimation_size: f32extra_primitive_overestimation_size_granularity: f32primitive_underestimation: u32conservative_point_and_line_rasterization: u32degenerate_triangles_rasterized: u32degenerate_lines_rasterized: u32fully_covered_fragment_shader_input_variable: u32conservative_rasterization_post_depth_coverage: u32

Trait Implementations

impl Cast for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

type Target = PhysicalDeviceConservativeRasterizationPropertiesEXT

The other type this type type can be used interchangeably with in FFI.

impl Clone for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

impl Copy for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

impl Debug for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

impl Default for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

impl HasBuilder<'static> for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

type Builder = PhysicalDeviceConservativeRasterizationPropertiesEXTBuilder

The associated builder for this type.

impl PartialEq<PhysicalDeviceConservativeRasterizationPropertiesEXT> for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

impl StructuralPartialEq for PhysicalDeviceConservativeRasterizationPropertiesEXT[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.