telar-renderer-core 0.1.5

Renderer-agnostic drawing vocabulary for Telar: draw commands, culling, dirty tracking and GPU sync.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
pub enum RendererError {
    #[error("surface creation failed: {0}")]
    Surface(String),
    #[error("surface resize failed: {0}")]
    Resize(String),
    #[error("frame present failed: {0}")]
    Present(String),
    #[error("backend error: {0}")]
    Backend(String),
}