rename renderer to vulkan
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 20m44s

This commit is contained in:
Florian RICHER 2025-04-03 18:38:17 +02:00
parent 6bc3dbd53d
commit f32db72101
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
8 changed files with 11 additions and 11 deletions

9
src/vulkan/mod.rs Normal file
View file

@ -0,0 +1,9 @@
mod app;
mod pipelines;
mod render_context;
mod vertex;
pub use app::App;
mod scene;
pub use scene::Scene;
pub use vertex::Vertex2D;