Use single source cgmath

This commit is contained in:
hodasemi 2023-01-27 13:54:01 +01:00
parent 44fd0993b5
commit f324f2585f
2 changed files with 3 additions and 3 deletions

View file

@ -10,5 +10,5 @@ vulkan-sys = { path = "../vulkan-sys" }
vma-rs = { path = "../vma-rs" }
anyhow = { version = "1.0.68", features = ["backtrace"] }
assetpath = { path = "../assetpath" }
cgmath = { git = "https://gavania.de/hodasemi/cgmath.git" }
safer-ffi = { version = "0.0.10", features = ["proc_macros"] }
utilities = { git = "https://gavania.de/hodasemi/utilities.git" }

View file

@ -41,9 +41,9 @@ pub use super::acceleration_structure::{AccelerationStructure, AccelerationStruc
pub use super::{OutOfDate, VkHandle, VulkanDevice};
pub use cgmath;
pub use cgmath::prelude::*;
pub use image;
pub use utilities::prelude::cgmath;
pub use utilities::prelude::cgmath::prelude::*;
pub use vulkan_sys::prelude::*;
pub use super::render_target::{sub_pass::*, *};