#[repr(C)]pub struct PhysicalDeviceVulkan14Properties<'a> {Show 28 fields
pub s_type: StructureType,
pub p_next: *mut c_void,
pub line_sub_pixel_precision_bits: u32,
pub max_vertex_attrib_divisor: u32,
pub supports_non_zero_first_instance: Bool32,
pub max_push_descriptors: u32,
pub dynamic_rendering_local_read_depth_stencil_attachments: Bool32,
pub dynamic_rendering_local_read_multisampled_attachments: Bool32,
pub early_fragment_multisample_coverage_after_sample_counting: Bool32,
pub early_fragment_sample_mask_test_before_sample_counting: Bool32,
pub depth_stencil_swizzle_one_support: Bool32,
pub polygon_mode_point_size: Bool32,
pub non_strict_single_pixel_wide_lines_use_parallelogram: Bool32,
pub non_strict_wide_lines_use_parallelogram: Bool32,
pub block_texel_view_compatible_multiple_layers: Bool32,
pub max_combined_image_sampler_descriptor_count: u32,
pub fragment_shading_rate_clamp_combiner_inputs: Bool32,
pub default_robustness_storage_buffers: PipelineRobustnessBufferBehavior,
pub default_robustness_uniform_buffers: PipelineRobustnessBufferBehavior,
pub default_robustness_vertex_inputs: PipelineRobustnessBufferBehavior,
pub default_robustness_images: PipelineRobustnessImageBehavior,
pub copy_src_layout_count: u32,
pub p_copy_src_layouts: *mut ImageLayout,
pub copy_dst_layout_count: u32,
pub p_copy_dst_layouts: *mut ImageLayout,
pub optimal_tiling_layout_uuid: [u8; 16],
pub identical_memory_type_requirements: Bool32,
pub _marker: PhantomData<&'a ()>,
}Expand description
Fields§
§s_type: StructureType§p_next: *mut c_void§line_sub_pixel_precision_bits: u32§max_vertex_attrib_divisor: u32§supports_non_zero_first_instance: Bool32§max_push_descriptors: u32§dynamic_rendering_local_read_depth_stencil_attachments: Bool32§dynamic_rendering_local_read_multisampled_attachments: Bool32§early_fragment_multisample_coverage_after_sample_counting: Bool32§early_fragment_sample_mask_test_before_sample_counting: Bool32§depth_stencil_swizzle_one_support: Bool32§polygon_mode_point_size: Bool32§non_strict_single_pixel_wide_lines_use_parallelogram: Bool32§non_strict_wide_lines_use_parallelogram: Bool32§block_texel_view_compatible_multiple_layers: Bool32§max_combined_image_sampler_descriptor_count: u32§fragment_shading_rate_clamp_combiner_inputs: Bool32§default_robustness_storage_buffers: PipelineRobustnessBufferBehavior§default_robustness_uniform_buffers: PipelineRobustnessBufferBehavior§default_robustness_vertex_inputs: PipelineRobustnessBufferBehavior§default_robustness_images: PipelineRobustnessImageBehavior§copy_src_layout_count: u32§p_copy_src_layouts: *mut ImageLayout§copy_dst_layout_count: u32§p_copy_dst_layouts: *mut ImageLayout§optimal_tiling_layout_uuid: [u8; 16]§identical_memory_type_requirements: Bool32§_marker: PhantomData<&'a ()>Implementations§
Source§impl<'a> PhysicalDeviceVulkan14Properties<'a>
impl<'a> PhysicalDeviceVulkan14Properties<'a>
pub fn line_sub_pixel_precision_bits( self, line_sub_pixel_precision_bits: u32, ) -> Self
pub fn max_vertex_attrib_divisor(self, max_vertex_attrib_divisor: u32) -> Self
pub fn supports_non_zero_first_instance( self, supports_non_zero_first_instance: bool, ) -> Self
pub fn max_push_descriptors(self, max_push_descriptors: u32) -> Self
pub fn dynamic_rendering_local_read_depth_stencil_attachments( self, dynamic_rendering_local_read_depth_stencil_attachments: bool, ) -> Self
pub fn dynamic_rendering_local_read_multisampled_attachments( self, dynamic_rendering_local_read_multisampled_attachments: bool, ) -> Self
pub fn early_fragment_multisample_coverage_after_sample_counting( self, early_fragment_multisample_coverage_after_sample_counting: bool, ) -> Self
pub fn early_fragment_sample_mask_test_before_sample_counting( self, early_fragment_sample_mask_test_before_sample_counting: bool, ) -> Self
pub fn depth_stencil_swizzle_one_support( self, depth_stencil_swizzle_one_support: bool, ) -> Self
pub fn polygon_mode_point_size(self, polygon_mode_point_size: bool) -> Self
pub fn non_strict_single_pixel_wide_lines_use_parallelogram( self, non_strict_single_pixel_wide_lines_use_parallelogram: bool, ) -> Self
pub fn non_strict_wide_lines_use_parallelogram( self, non_strict_wide_lines_use_parallelogram: bool, ) -> Self
pub fn block_texel_view_compatible_multiple_layers( self, block_texel_view_compatible_multiple_layers: bool, ) -> Self
pub fn max_combined_image_sampler_descriptor_count( self, max_combined_image_sampler_descriptor_count: u32, ) -> Self
pub fn fragment_shading_rate_clamp_combiner_inputs( self, fragment_shading_rate_clamp_combiner_inputs: bool, ) -> Self
pub fn default_robustness_storage_buffers( self, default_robustness_storage_buffers: PipelineRobustnessBufferBehavior, ) -> Self
pub fn default_robustness_uniform_buffers( self, default_robustness_uniform_buffers: PipelineRobustnessBufferBehavior, ) -> Self
pub fn default_robustness_vertex_inputs( self, default_robustness_vertex_inputs: PipelineRobustnessBufferBehavior, ) -> Self
pub fn default_robustness_images( self, default_robustness_images: PipelineRobustnessImageBehavior, ) -> Self
pub fn copy_src_layouts(self, copy_src_layouts: &'a mut [ImageLayout]) -> Self
pub fn copy_dst_layouts(self, copy_dst_layouts: &'a mut [ImageLayout]) -> Self
pub fn optimal_tiling_layout_uuid( self, optimal_tiling_layout_uuid: [u8; 16], ) -> Self
pub fn identical_memory_type_requirements( self, identical_memory_type_requirements: bool, ) -> Self
Trait Implementations§
Source§impl<'a> Clone for PhysicalDeviceVulkan14Properties<'a>
impl<'a> Clone for PhysicalDeviceVulkan14Properties<'a>
Source§fn clone(&self) -> PhysicalDeviceVulkan14Properties<'a>
fn clone(&self) -> PhysicalDeviceVulkan14Properties<'a>
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<'a> Debug for PhysicalDeviceVulkan14Properties<'a>
impl<'a> Debug for PhysicalDeviceVulkan14Properties<'a>
Source§impl Default for PhysicalDeviceVulkan14Properties<'_>
impl Default for PhysicalDeviceVulkan14Properties<'_>
Source§impl<'a> TaggedStructure for PhysicalDeviceVulkan14Properties<'a>
impl<'a> TaggedStructure for PhysicalDeviceVulkan14Properties<'a>
const STRUCTURE_TYPE: StructureType = StructureType::PHYSICAL_DEVICE_VULKAN_1_4_PROPERTIES
impl<'a> Copy for PhysicalDeviceVulkan14Properties<'a>
impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceVulkan14Properties<'_>
impl Send for PhysicalDeviceVulkan14Properties<'_>
impl Sync for PhysicalDeviceVulkan14Properties<'_>
Auto Trait Implementations§
impl<'a> Freeze for PhysicalDeviceVulkan14Properties<'a>
impl<'a> RefUnwindSafe for PhysicalDeviceVulkan14Properties<'a>
impl<'a> Unpin for PhysicalDeviceVulkan14Properties<'a>
impl<'a> UnwindSafe for PhysicalDeviceVulkan14Properties<'a>
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