summary refs log tree commit diff
path: root/src/graphics_window_dressing.rs
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@irenes.space>2026-07-18 03:48:13 -0700
committerIrene Knapp <ireneista@irenes.space>2026-07-18 03:48:13 -0700
commit0371c8f086008d604dddfe92d021f8ecfe398436 (patch)
tree74c21e5fea53a71937b26b8bbfac7ee784355f6c /src/graphics_window_dressing.rs
parent40bd889e67d6f9fb4ce837fcda4ddf5a34c54b47 (diff)
pull the shader data stuff into its own file
separate from the linear algebra stuff

Force-Push: yes
Change-Id: I26fc7ac596f304fa35ca7a4d0e1349d4fa0685ee
Diffstat (limited to 'src/graphics_window_dressing.rs')
-rw-r--r--src/graphics_window_dressing.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics_window_dressing.rs b/src/graphics_window_dressing.rs
index 27390e4..c1db68f 100644
--- a/src/graphics_window_dressing.rs
+++ b/src/graphics_window_dressing.rs
@@ -3,7 +3,7 @@ use crate::error::*;
 use crate::graphics_permanent::{
   PermanentGraphicsState, GraphicsStateForReinit, QueueFamilyIndices
 };
-use crate::linear_algebra::{ Vertex, VERTICES, INDICES, UniformBlock };
+use crate::shader_data::{ VERTICES, INDICES, Vertex, UniformBlock };
 
 use std::collections::BTreeSet;
 use std::io::Cursor;