diff options
| author | HampusM <hampus@hampusmat.com> | 2026-07-10 14:07:03 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-07-10 14:07:03 +0200 |
| commit | 3794c39bfd3fd4d03f9f89226fc9c1f16b096572 (patch) | |
| tree | 65bea97c050b3df7b022c583eb813e56881452de /engine/src/lib.rs | |
| parent | f6b86d55f27c43b239346c6bce1d360b257a2d19 (diff) | |
refactor(engine): move shader module to inside of rendering module
Diffstat (limited to 'engine/src/lib.rs')
| -rw-r--r-- | engine/src/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/engine/src/lib.rs b/engine/src/lib.rs index 79cf0c7..db20917 100644 --- a/engine/src/lib.rs +++ b/engine/src/lib.rs @@ -9,7 +9,6 @@ use crate::ecs::phase::PRE_UPDATE as PRE_UPDATE_PHASE; use crate::ecs::system::initializable::Initializable; use crate::ecs::system::Into; use crate::ecs::World; -use crate::shader::Extension as ShaderExtension; mod util; mod work_queue; @@ -31,7 +30,6 @@ pub mod model; pub mod projection; pub mod reflection; pub mod rendering; -pub mod shader; pub mod texture; pub mod transform; pub mod ui; @@ -73,12 +71,10 @@ impl Engine crate::model::asset::add_importers(&mut assets); crate::material::asset::add_importers(&mut assets); - crate::shader::add_asset_importers(&mut assets); crate::texture::initialize(&mut assets); world.add_extension(AssetExtension { assets }); - world.add_extension(ShaderExtension); Self { world } } |
