Trying to clena the mess opened by plugins
Some checks failed
Deploy Website / deploy (push) Failing after 4m53s
Some checks failed
Deploy Website / deploy (push) Failing after 4m53s
This commit is contained in:
12
plugins/egui-baseview/src/renderer/opengl.rs
Normal file
12
plugins/egui-baseview/src/renderer/opengl.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
use egui_glow::PainterError;
|
||||
use thiserror::Error;
|
||||
|
||||
pub mod renderer;
|
||||
|
||||
#[derive(Error, Debug)]
|
||||
pub enum OpenGlError {
|
||||
#[error("Failed to get baseview's GL context")]
|
||||
NoContext,
|
||||
#[error("Error occured when initializing painter: \n {0}")]
|
||||
CreatePainter(PainterError),
|
||||
}
|
||||
Reference in New Issue
Block a user