Skip to content

Commit

Permalink
Renamed vk into vulkan to prevent confusion.
Browse files Browse the repository at this point in the history
ash::vk and the vulkan implementation now use different package
names.
  • Loading branch information
zlogic committed Feb 3, 2024
1 parent a2cb086 commit 3700e1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/correlation/gpu/mod.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#[cfg(target_os = "macos")]
mod metal;
#[cfg(not(target_os = "macos"))]
mod vk;
mod vulkan;

use std::{error, fmt};
#[cfg(not(target_os = "macos"))]
use vk::ShaderModuleType;
use vulkan::ShaderModuleType;

#[cfg(not(target_os = "macos"))]
pub type DefaultDeviceContext = vk::DeviceContext;
pub type DefaultDeviceContext = vulkan::DeviceContext;

use crate::data::Grid;
use nalgebra::Matrix3;
Expand Down
File renamed without changes.

0 comments on commit 3700e1d

Please sign in to comment.