summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/webhogg/src/canvas.rs
blob: 5f819e9ed831a070f55c3468eda0bafb321ca85c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use web_sys::WebGl2RenderingContext as WebGl2;
use wasm_bindgen::JsCast;
use crate::webhogg_exception::WebhoggException;
use web_sys::OffscreenCanvas as ECanvas;

pub struct Canvas {
    ctx: WebGl2,
}

impl Canvas {
    pub fn from_existing(canvas: &ECanvas) -> Result<Self, WebhoggException> {
        info!("messages lol");
        let ctx = canvas.get_context("webgl2")
            .map_err(|x| WebhoggException::WebGlContextError(
                    format!("obtained invalid webgl2 context js value: {:?}", x)))?
            .ok_or(WebhoggException::WebGlContextError(
                    "could not obtaine webgl2 context".to_string()))?
            .dyn_into::<WebGl2>()
            .map_err(|_| WebhoggException::WebGlContextError(
                    "obtained invalid webgl2 context js object".to_string()))?;
        info!("successfully obtained webgl2 context");
        ctx.clear_color(1.0, 0.0, 0.0, 1.0);
        ctx.clear(WebGl2::COLOR_BUFFER_BIT);
        Ok(Self {
            ctx,
        })
    }

    pub fn gl<'a>(&'a self) -> &'a WebGl2 {
        &self.ctx
    }

    pub fn gl_mut<'a>(&'a mut self) -> &'a mut WebGl2 {
        &mut self.ctx
    }
}