Enum alacritty::renderer::text::RenderingPass
source · #[repr(u8)]enum RenderingPass {
Background,
SubpixelPass1,
SubpixelPass2,
SubpixelPass3,
}
Expand description
Rendering passes, for both GLES2 and GLSL3 renderer.
Variants§
Background
Rendering pass used to render background color in text shaders.
SubpixelPass1
The first pass to render text with both GLES2 and GLSL3 renderers.
SubpixelPass2
The second pass to render text with GLES2 renderer.
SubpixelPass3
The third pass to render text with GLES2 renderer.
Auto Trait Implementations§
impl RefUnwindSafe for RenderingPass
impl Send for RenderingPass
impl Sync for RenderingPass
impl Unpin for RenderingPass
impl UnwindSafe for RenderingPass
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