added log wrapper
This commit is contained in:
parent
76395db2a8
commit
237dd614a2
15 changed files with 213 additions and 59 deletions
7
moonhare_graphics/Cargo.toml
Normal file
7
moonhare_graphics/Cargo.toml
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "moonhare_graphics"
|
||||
edition = "2024"
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
|
||||
[dependencies]
|
||||
0
moonhare_graphics/src/gpu_buffer.rs
Normal file
0
moonhare_graphics/src/gpu_buffer.rs
Normal file
0
moonhare_graphics/src/graphics_server.rs
Normal file
0
moonhare_graphics/src/graphics_server.rs
Normal file
4
moonhare_graphics/src/lib.rs
Normal file
4
moonhare_graphics/src/lib.rs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
/// Crate for providing an abstraction layer over different graphics APIs
|
||||
|
||||
pub mod graphics_server;
|
||||
pub mod shader;
|
||||
4
moonhare_graphics/src/shader.rs
Normal file
4
moonhare_graphics/src/shader.rs
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
pub enum ShaderType {
|
||||
Vertex,
|
||||
Fragment,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue