summary refs log tree commit diff
path: root/src/graphics/scene.rs
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@irenes.space>2026-08-06 17:10:19 -0700
committerIrene Knapp <ireneista@irenes.space>2026-08-06 17:10:19 -0700
commit698c9493c89fb0c41eb7a10186c6befc7ad01d79 (patch)
tree4f55e18395c04f41bc9773b64c8339a97daa874b /src/graphics/scene.rs
parent26e89267c0d745793d777ad0b1157a5596258515 (diff)
further splitting of graphics submodules
now this is starting to feel like halfway decent organization

Force-Push: yes
Change-Id: I45cc4afb45e1528705680eb4192c1e9ba72f53fb
Diffstat (limited to 'src/graphics/scene.rs')
-rw-r--r--src/graphics/scene.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics/scene.rs b/src/graphics/scene.rs
index e59ae89..b5cf7bd 100644
--- a/src/graphics/scene.rs
+++ b/src/graphics/scene.rs
@@ -1,6 +1,6 @@
 #![deny(unsafe_code)]
 use crate::error::*;
-use crate::graphics::window_dressing::RenderState;
+use crate::graphics::render_state::RenderState;
 use crate::linear_algebra::{ Vec3, Vec4, Transformation };
 use crate::shader_data::VertexPushBlock;