#[repr(C)]pub enum ExternalTextureFormat {
Rgba = 0,
Nv12 = 1,
Yu12 = 2,
}
Expand description
Format of an ExternalTexture
. This indicates the number of underlying
planes used by the ExternalTexture
as well as each plane’s format.
Variants§
Rgba = 0
Single TextureFormat::Rgba8Unorm
or TextureFormat::Bgra8Unorm
format plane.
Nv12 = 1
TextureFormat::R8Unorm
Y plane, and TextureFormat::Rg8Unorm
interleaved CbCr plane.
Yu12 = 2
Separate TextureFormat::R8Unorm
Y, Cb, and Cr planes.
Trait Implementations§
Source§impl Clone for ExternalTextureFormat
impl Clone for ExternalTextureFormat
Source§fn clone(&self) -> ExternalTextureFormat
fn clone(&self) -> ExternalTextureFormat
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 Debug for ExternalTextureFormat
impl Debug for ExternalTextureFormat
Source§impl<'de> Deserialize<'de> for ExternalTextureFormat
impl<'de> Deserialize<'de> for ExternalTextureFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ExternalTextureFormat
impl Hash for ExternalTextureFormat
Source§impl PartialEq for ExternalTextureFormat
impl PartialEq for ExternalTextureFormat
Source§impl Serialize for ExternalTextureFormat
impl Serialize for ExternalTextureFormat
impl Copy for ExternalTextureFormat
impl Eq for ExternalTextureFormat
impl StructuralPartialEq for ExternalTextureFormat
Auto Trait Implementations§
impl Freeze for ExternalTextureFormat
impl RefUnwindSafe for ExternalTextureFormat
impl Send for ExternalTextureFormat
impl Sync for ExternalTextureFormat
impl Unpin for ExternalTextureFormat
impl UnwindSafe for ExternalTextureFormat
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