pub enum MaterialCatalogTextureKind {
BlueNoise64x64R8,
Bayer8x8R8,
}Expand description
Renderer-owned catalog textures that sampled materials may bind (ADR 0242).
These are framework-controlled identifiers, not backend handles.
Variants§
BlueNoise64x64R8
A small baked noise texture (nominally “blue noise”).
Bayer8x8R8
A repeated 8x8 Bayer dither matrix.
Trait Implementations§
Source§impl Clone for MaterialCatalogTextureKind
impl Clone for MaterialCatalogTextureKind
Source§fn clone(&self) -> MaterialCatalogTextureKind
fn clone(&self) -> MaterialCatalogTextureKind
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 MaterialCatalogTextureKind
impl Debug for MaterialCatalogTextureKind
Source§impl<'de> Deserialize<'de> for MaterialCatalogTextureKind
impl<'de> Deserialize<'de> for MaterialCatalogTextureKind
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 MaterialCatalogTextureKind
impl Hash for MaterialCatalogTextureKind
impl Copy for MaterialCatalogTextureKind
impl Eq for MaterialCatalogTextureKind
impl StructuralPartialEq for MaterialCatalogTextureKind
Auto Trait Implementations§
impl Freeze for MaterialCatalogTextureKind
impl RefUnwindSafe for MaterialCatalogTextureKind
impl Send for MaterialCatalogTextureKind
impl Sync for MaterialCatalogTextureKind
impl Unpin for MaterialCatalogTextureKind
impl UnsafeUnpin for MaterialCatalogTextureKind
impl UnwindSafe for MaterialCatalogTextureKind
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