Use single source cgmath
This commit is contained in:
parent
44fd0993b5
commit
f324f2585f
2 changed files with 3 additions and 3 deletions
|
@ -10,5 +10,5 @@ vulkan-sys = { path = "../vulkan-sys" }
|
||||||
vma-rs = { path = "../vma-rs" }
|
vma-rs = { path = "../vma-rs" }
|
||||||
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
||||||
assetpath = { path = "../assetpath" }
|
assetpath = { path = "../assetpath" }
|
||||||
cgmath = { git = "https://gavania.de/hodasemi/cgmath.git" }
|
|
||||||
safer-ffi = { version = "0.0.10", features = ["proc_macros"] }
|
safer-ffi = { version = "0.0.10", features = ["proc_macros"] }
|
||||||
|
utilities = { git = "https://gavania.de/hodasemi/utilities.git" }
|
||||||
|
|
|
@ -41,9 +41,9 @@ pub use super::acceleration_structure::{AccelerationStructure, AccelerationStruc
|
||||||
|
|
||||||
pub use super::{OutOfDate, VkHandle, VulkanDevice};
|
pub use super::{OutOfDate, VkHandle, VulkanDevice};
|
||||||
|
|
||||||
pub use cgmath;
|
|
||||||
pub use cgmath::prelude::*;
|
|
||||||
pub use image;
|
pub use image;
|
||||||
|
pub use utilities::prelude::cgmath;
|
||||||
|
pub use utilities::prelude::cgmath::prelude::*;
|
||||||
pub use vulkan_sys::prelude::*;
|
pub use vulkan_sys::prelude::*;
|
||||||
|
|
||||||
pub use super::render_target::{sub_pass::*, *};
|
pub use super::render_target::{sub_pass::*, *};
|
||||||
|
|
Loading…
Reference in a new issue