24 lines
610 B
Rust
24 lines
610 B
Rust
use wasm_bindgen::prelude::JsValue;
|
|
|
|
pub trait Painter {
|
|
fn set_texture(&mut self, tex_id: u64, image: epi::Image);
|
|
|
|
fn free_texture(&mut self, tex_id: u64);
|
|
|
|
fn debug_info(&self) -> String;
|
|
|
|
/// id of the canvas html element containing the rendering
|
|
fn canvas_id(&self) -> &str;
|
|
|
|
fn upload_egui_texture(&mut self, font_image: &egui::FontImage);
|
|
|
|
fn clear(&mut self, clear_color: egui::Rgba);
|
|
|
|
fn paint_meshes(
|
|
&mut self,
|
|
clipped_meshes: Vec<egui::ClippedMesh>,
|
|
pixels_per_point: f32,
|
|
) -> Result<(), JsValue>;
|
|
|
|
fn name(&self) -> &'static str;
|
|
}
|