Struct ash::vk::VideoSessionCreateInfoKHR
source · #[repr(C)]pub struct VideoSessionCreateInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub queue_family_index: u32,
pub flags: VideoSessionCreateFlagsKHR,
pub p_video_profile: *const VideoProfileInfoKHR<'a>,
pub picture_format: Format,
pub max_coded_extent: Extent2D,
pub reference_picture_format: Format,
pub max_dpb_slots: u32,
pub max_active_reference_pictures: u32,
pub p_std_header_version: *const ExtensionProperties,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§queue_family_index: u32
§flags: VideoSessionCreateFlagsKHR
§p_video_profile: *const VideoProfileInfoKHR<'a>
§picture_format: Format
§max_coded_extent: Extent2D
§reference_picture_format: Format
§max_dpb_slots: u32
§max_active_reference_pictures: u32
§p_std_header_version: *const ExtensionProperties
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> VideoSessionCreateInfoKHR<'a>
impl<'a> VideoSessionCreateInfoKHR<'a>
pub fn queue_family_index(self, queue_family_index: u32) -> Self
pub fn flags(self, flags: VideoSessionCreateFlagsKHR) -> Self
pub fn video_profile(self, video_profile: &'a VideoProfileInfoKHR<'a>) -> Self
pub fn picture_format(self, picture_format: Format) -> Self
pub fn max_coded_extent(self, max_coded_extent: Extent2D) -> Self
pub fn reference_picture_format(self, reference_picture_format: Format) -> Self
pub fn max_dpb_slots(self, max_dpb_slots: u32) -> Self
pub fn max_active_reference_pictures( self, max_active_reference_pictures: u32, ) -> Self
pub fn std_header_version( self, std_header_version: &'a ExtensionProperties, ) -> Self
sourcepub fn push_next<T: ExtendsVideoSessionCreateInfoKHR + ?Sized>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsVideoSessionCreateInfoKHR + ?Sized>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call x.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Trait Implementations§
source§impl<'a> Clone for VideoSessionCreateInfoKHR<'a>
impl<'a> Clone for VideoSessionCreateInfoKHR<'a>
source§fn clone(&self) -> VideoSessionCreateInfoKHR<'a>
fn clone(&self) -> VideoSessionCreateInfoKHR<'a>
Returns a copy 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 VideoSessionCreateInfoKHR<'a>
impl<'a> Debug for VideoSessionCreateInfoKHR<'a>
source§impl Default for VideoSessionCreateInfoKHR<'_>
impl Default for VideoSessionCreateInfoKHR<'_>
source§impl<'a> TaggedStructure for VideoSessionCreateInfoKHR<'a>
impl<'a> TaggedStructure for VideoSessionCreateInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::VIDEO_SESSION_CREATE_INFO_KHR
impl<'a> Copy for VideoSessionCreateInfoKHR<'a>
impl Send for VideoSessionCreateInfoKHR<'_>
impl Sync for VideoSessionCreateInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for VideoSessionCreateInfoKHR<'a>
impl<'a> RefUnwindSafe for VideoSessionCreateInfoKHR<'a>
impl<'a> Unpin for VideoSessionCreateInfoKHR<'a>
impl<'a> UnwindSafe for VideoSessionCreateInfoKHR<'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