diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-08-14 02:35:23 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-08-14 02:35:23 -0700 |
| commit | 5a4fad7b67a6ab477b230f4d8a70efed0e9100cb (patch) | |
| tree | 95f10f8106a225e0fcd4a1fbd0d0bca2ced51b38 /src/graphics/mod.rs | |
| parent | 19e3a0f319fd04c1dde803796ec272d038b634f7 (diff) | |
move all the per-frame stuff into its own struct and file
Force-Push: yes Change-Id: I54b5c8fcc692616f83a37039a445796dddd4b7e4
Diffstat (limited to 'src/graphics/mod.rs')
| -rw-r--r-- | src/graphics/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/graphics/mod.rs b/src/graphics/mod.rs index bb12c80..7b46cb1 100644 --- a/src/graphics/mod.rs +++ b/src/graphics/mod.rs @@ -1,4 +1,5 @@ #![deny(unsafe_code)] +pub mod frame; pub mod model; pub mod permanent; pub mod render; @@ -7,6 +8,7 @@ pub mod scene; pub mod util; pub mod window_dressing; +pub use crate::graphics::frame::Frame; pub use crate::graphics::model::Model; pub use crate::graphics::texture::Texture; pub use crate::graphics::permanent::{ Permanent, ForReinit }; |