Enum citro3d::render::ColorFormat
source · #[repr(u8)]pub enum ColorFormat {
RGBA8 = 0,
RGB8 = 1,
RGBA5551 = 2,
RGB565 = 3,
RGBA4 = 4,
}
Expand description
The color format to use when rendering on the GPU.
Variants§
RGBA8 = 0
8-bit Red + 8-bit Green + 8-bit Blue + 8-bit Alpha.
RGB8 = 1
8-bit Red + 8-bit Green + 8-bit Blue.
RGBA5551 = 2
5-bit Red + 5-bit Green + 5-bit Blue + 1-bit Alpha.
RGB565 = 3
5-bit Red + 6-bit Green + 5-bit Blue.
RGBA4 = 4
4-bit Red + 4-bit Green + 4-bit Blue + 4-bit Alpha.
Trait Implementations§
source§impl Clone for ColorFormat
impl Clone for ColorFormat
source§fn clone(&self) -> ColorFormat
fn clone(&self) -> ColorFormat
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ColorFormat
impl Debug for ColorFormat
source§impl From<FramebufferFormat> for ColorFormat
impl From<FramebufferFormat> for ColorFormat
source§fn from(format: FramebufferFormat) -> Self
fn from(format: FramebufferFormat) -> Self
Converts to this type from the input type.
impl Copy for ColorFormat
Auto Trait Implementations§
impl RefUnwindSafe for ColorFormat
impl Send for ColorFormat
impl Sync for ColorFormat
impl Unpin for ColorFormat
impl UnwindSafe for ColorFormat
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more