#[repr(C)]pub enum GFX_LAYER {
AUTO = 65_535,
CPU = 1,
SKIA_CPU = 4,
SKIA_OPENGL = 5,
}
Expand description
Sciter graphics rendering backend.
Variants§
AUTO = 65_535
An auto-selected backend.
CPU = 1
Depends on OS: GDI, Cairo or CoreGraphics.
SKIA_CPU = 4
Skia backend with CPU rasterization mode.
SKIA_OPENGL = 5
Skia backend with OpenGL rendering.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GFX_LAYER
impl RefUnwindSafe for GFX_LAYER
impl Send for GFX_LAYER
impl Sync for GFX_LAYER
impl Unpin for GFX_LAYER
impl UnwindSafe for GFX_LAYER
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