Struct ash::vk::VideoEncodeH264CapabilitiesEXTBuilder
source · #[repr(transparent)]pub struct VideoEncodeH264CapabilitiesEXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> VideoEncodeH264CapabilitiesEXTBuilder<'a>
impl<'a> VideoEncodeH264CapabilitiesEXTBuilder<'a>
pub fn flags(self, flags: VideoEncodeH264CapabilityFlagsEXT) -> Self
pub fn input_mode_flags( self, input_mode_flags: VideoEncodeH264InputModeFlagsEXT ) -> Self
pub fn output_mode_flags( self, output_mode_flags: VideoEncodeH264OutputModeFlagsEXT ) -> Self
pub fn max_p_picture_l0_reference_count( self, max_p_picture_l0_reference_count: u8 ) -> Self
pub fn max_b_picture_l0_reference_count( self, max_b_picture_l0_reference_count: u8 ) -> Self
pub fn max_l1_reference_count(self, max_l1_reference_count: u8) -> Self
pub fn motion_vectors_over_pic_boundaries_flag( self, motion_vectors_over_pic_boundaries_flag: bool ) -> Self
pub fn max_bytes_per_pic_denom(self, max_bytes_per_pic_denom: u32) -> Self
pub fn max_bits_per_mb_denom(self, max_bits_per_mb_denom: u32) -> Self
pub fn log2_max_mv_length_horizontal( self, log2_max_mv_length_horizontal: u32 ) -> Self
pub fn log2_max_mv_length_vertical( self, log2_max_mv_length_vertical: u32 ) -> Self
sourcepub fn build(self) -> VideoEncodeH264CapabilitiesEXT
pub fn build(self) -> VideoEncodeH264CapabilitiesEXT
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.