[][src]Struct egui_web::webgl::Painter

pub struct Painter { /* fields omitted */ }

Implementations

impl Painter[src]

pub fn debug_info(&self) -> String[src]

pub fn new(canvas_id: &str) -> Result<Painter, JsValue>[src]

pub fn canvas_id(&self) -> &str[src]

id of the canvas html element containing the rendering

pub fn new_user_texture(
    &mut self,
    size: (usize, usize),
    srgba_pixels: &[Srgba]
) -> TextureId
[src]

pub fn paint_jobs(
    &mut self,
    bg_color: Srgba,
    jobs: PaintJobs,
    egui_texture: &Texture,
    pixels_per_point: f32
) -> Result<(), JsValue>
[src]

Auto Trait Implementations

impl RefUnwindSafe for Painter

impl !Send for Painter

impl !Sync for Painter

impl Unpin for Painter

impl UnwindSafe for Painter

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.