fix references

This commit is contained in:
Quaternions 2023-07-21 00:09:04 -07:00
parent 05b3f49ad2
commit aea9c5aa79

View File

@ -8,7 +8,7 @@
// according to those terms. // according to those terms.
use cgmath::{Matrix3, Matrix4, Point3, Rad, Vector3}; 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 std::{sync::Arc, time::Instant};
use vulkano::{ use vulkano::{
buffer::{ buffer::{
@ -472,13 +472,13 @@ fn window_size_dependent_setup(
mod vs { mod vs {
vulkano_shaders::shader! { vulkano_shaders::shader! {
ty: "vertex", ty: "vertex",
path: "src/bin/teapot/vert.glsl", path: "src/vert.glsl",
} }
} }
mod fs { mod fs {
vulkano_shaders::shader! { vulkano_shaders::shader! {
ty: "fragment", ty: "fragment",
path: "src/bin/teapot/frag.glsl", path: "src/frag.glsl",
} }
} }