diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:23 +0100 |
commit | fb996488aa651cb2e7f46abc083c4318b47e77cd (patch) | |
tree | d1513d479b6069abca290e271f439cd1ef553383 /stockton-render/src/draw/mod.rs | |
parent | a82e16c92a026b2fbe3a40a21d7e690242e32ba6 (diff) |
wip refactor(render): more work on draw passes
Diffstat (limited to 'stockton-render/src/draw/mod.rs')
-rw-r--r-- | stockton-render/src/draw/mod.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/stockton-render/src/draw/mod.rs b/stockton-render/src/draw/mod.rs index 5e1d2cd..411e835 100644 --- a/stockton-render/src/draw/mod.rs +++ b/stockton-render/src/draw/mod.rs @@ -2,17 +2,15 @@ pub mod target; -mod buffer; +mod buffers; mod camera; mod context; -mod depth_buffer; -mod draw_buffers; pub mod draw_passes; mod queue_negotiator; mod texture; mod ui; mod utils; -pub use self::camera::calc_vp_matrix_system; pub use self::context::RenderingContext; -pub use self::draw_buffers::UvPoint; + +pub use self::draw_passes::*; |