#[repr(C)]pub struct StdVideoEncodeH265WeightTable {
pub flags: StdVideoEncodeH265WeightTableFlags,
pub luma_log2_weight_denom: u8,
pub delta_chroma_log2_weight_denom: i8,
pub delta_luma_weight_l0: [i8; 15],
pub luma_offset_l0: [i8; 15],
pub delta_chroma_weight_l0: [[i8; 2]; 15],
pub delta_chroma_offset_l0: [[i8; 2]; 15],
pub delta_luma_weight_l1: [i8; 15],
pub luma_offset_l1: [i8; 15],
pub delta_chroma_weight_l1: [[i8; 2]; 15],
pub delta_chroma_offset_l1: [[i8; 2]; 15],
}Expand description
Vulkan Manual Page · Structure
Fields§
§flags: StdVideoEncodeH265WeightTableFlags§luma_log2_weight_denom: u8§delta_chroma_log2_weight_denom: i8§delta_luma_weight_l0: [i8; 15]§luma_offset_l0: [i8; 15]§delta_chroma_weight_l0: [[i8; 2]; 15]§delta_chroma_offset_l0: [[i8; 2]; 15]§delta_luma_weight_l1: [i8; 15]§luma_offset_l1: [i8; 15]§delta_chroma_weight_l1: [[i8; 2]; 15]§delta_chroma_offset_l1: [[i8; 2]; 15]Implementations§
Source§impl StdVideoEncodeH265WeightTable
impl StdVideoEncodeH265WeightTable
pub fn into_builder<'a>(self) -> StdVideoEncodeH265WeightTableBuilder<'a>
Trait Implementations§
Source§impl Clone for StdVideoEncodeH265WeightTable
impl Clone for StdVideoEncodeH265WeightTable
Source§fn clone(&self) -> StdVideoEncodeH265WeightTable
fn clone(&self) -> StdVideoEncodeH265WeightTable
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 Hash for StdVideoEncodeH265WeightTable
impl Hash for StdVideoEncodeH265WeightTable
Source§impl PartialEq for StdVideoEncodeH265WeightTable
impl PartialEq for StdVideoEncodeH265WeightTable
Source§fn eq(&self, other: &StdVideoEncodeH265WeightTable) -> bool
fn eq(&self, other: &StdVideoEncodeH265WeightTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StdVideoEncodeH265WeightTable
impl Eq for StdVideoEncodeH265WeightTable
impl StructuralPartialEq for StdVideoEncodeH265WeightTable
Auto Trait Implementations§
impl Freeze for StdVideoEncodeH265WeightTable
impl RefUnwindSafe for StdVideoEncodeH265WeightTable
impl Send for StdVideoEncodeH265WeightTable
impl Sync for StdVideoEncodeH265WeightTable
impl Unpin for StdVideoEncodeH265WeightTable
impl UnwindSafe for StdVideoEncodeH265WeightTable
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