#[repr(C)]pub struct VideoProfileInfoKHR {
pub s_type: StructureType,
pub p_next: *const c_void,
pub video_codec_operation: VideoCodecOperationFlagBitsKHR,
pub chroma_subsampling: VideoChromaSubsamplingFlagBitsKHR,
pub luma_bit_depth: VideoComponentBitDepthFlagBitsKHR,
pub chroma_bit_depth: VideoComponentBitDepthFlagBitsKHR,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_VIDEO_PROFILE_INFO_KHR.
p_next: *const c_voidOptional, may be null.
video_codec_operation: VideoCodecOperationFlagBitsKHR§chroma_subsampling: VideoChromaSubsamplingFlagBitsKHR§luma_bit_depth: VideoComponentBitDepthFlagBitsKHR§chroma_bit_depth: VideoComponentBitDepthFlagBitsKHRImplementations§
Source§impl VideoProfileInfoKHR
impl VideoProfileInfoKHR
Sourcepub fn builder<'a>() -> VideoProfileInfoKHRBuilder<'a>
pub fn builder<'a>() -> VideoProfileInfoKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for VideoProfileInfoKHR
impl Clone for VideoProfileInfoKHR
Source§fn clone(&self) -> VideoProfileInfoKHR
fn clone(&self) -> VideoProfileInfoKHR
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 Debug for VideoProfileInfoKHR
impl Debug for VideoProfileInfoKHR
Source§impl Default for VideoProfileInfoKHR
impl Default for VideoProfileInfoKHR
Source§fn default() -> VideoProfileInfoKHR
fn default() -> VideoProfileInfoKHR
Returns the “default value” for a type. Read more
impl Copy for VideoProfileInfoKHR
impl ExtendsQueryPoolCreateInfo for VideoProfileInfoKHR
Auto Trait Implementations§
impl Freeze for VideoProfileInfoKHR
impl RefUnwindSafe for VideoProfileInfoKHR
impl !Send for VideoProfileInfoKHR
impl !Sync for VideoProfileInfoKHR
impl Unpin for VideoProfileInfoKHR
impl UnsafeUnpin for VideoProfileInfoKHR
impl UnwindSafe for VideoProfileInfoKHR
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