From aea9c5aa79e3be6b34448dadf8d4fc7c293a5b5b Mon Sep 17 00:00:00 2001 From: Quaternions Date: Fri, 21 Jul 2023 00:09:04 -0700 Subject: [PATCH] fix references --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index bfd9768..42d8782 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ // according to those terms. use cgmath::{Matrix3, Matrix4, Point3, Rad, Vector3}; -use examples::{Normal, Position, INDICES, NORMALS, POSITIONS}; +use strafe_client::{Normal, Position, INDICES, NORMALS, POSITIONS}; use std::{sync::Arc, time::Instant}; use vulkano::{ buffer::{ @@ -472,13 +472,13 @@ fn window_size_dependent_setup( mod vs { vulkano_shaders::shader! { ty: "vertex", - path: "src/bin/teapot/vert.glsl", + path: "src/vert.glsl", } } mod fs { vulkano_shaders::shader! { ty: "fragment", - path: "src/bin/teapot/frag.glsl", + path: "src/frag.glsl", } }