From a0dc6fd8f682b0ebeb9959b6bb16c56f3c9d1e62 Mon Sep 17 00:00:00 2001 From: Dmitry Zolotukhin Date: Sat, 3 Feb 2024 17:27:02 +0100 Subject: [PATCH] Renamed vk into vulkan to prevent confusion. ash::vk and the vulkan implementation now use different package names. --- src/correlation/gpu/mod.rs | 6 +++--- src/correlation/gpu/{vk.rs => vulkan.rs} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename src/correlation/gpu/{vk.rs => vulkan.rs} (100%) diff --git a/src/correlation/gpu/mod.rs b/src/correlation/gpu/mod.rs index 8f158f3..ca47f18 100644 --- a/src/correlation/gpu/mod.rs +++ b/src/correlation/gpu/mod.rs @@ -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; diff --git a/src/correlation/gpu/vk.rs b/src/correlation/gpu/vulkan.rs similarity index 100% rename from src/correlation/gpu/vk.rs rename to src/correlation/gpu/vulkan.rs