vulkan: move gpu-alloc-ash to core
This commit is contained in:
parent
fce250d233
commit
4b3d3a50cd
4 changed files with 3 additions and 7 deletions
|
|
@ -10,7 +10,6 @@ mod device;
|
|||
mod dmabuf_buffer;
|
||||
mod eotfs;
|
||||
mod format;
|
||||
mod gpu_alloc_ash;
|
||||
mod image;
|
||||
mod instance;
|
||||
mod pipeline;
|
||||
|
|
|
|||
|
|
@ -1,13 +1,9 @@
|
|||
use {
|
||||
crate::{
|
||||
cpu_worker::{AsyncCpuWork, CpuJob, CpuWork, CpuWorker},
|
||||
gfx_apis::vulkan::{
|
||||
VulkanError,
|
||||
device::VulkanDevice,
|
||||
gpu_alloc_ash::{self, AshMemoryDevice},
|
||||
renderer::VulkanRenderer,
|
||||
},
|
||||
gfx_apis::vulkan::{VulkanError, device::VulkanDevice, renderer::VulkanRenderer},
|
||||
utils::{numcell::NumCell, page_size::page_size, ptr_ext::MutPtrExt},
|
||||
vulkan_core::gpu_alloc_ash::{self, AshMemoryDevice},
|
||||
},
|
||||
ash::{
|
||||
Device,
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ use {
|
|||
|
||||
pub mod device;
|
||||
pub mod fence;
|
||||
pub mod gpu_alloc_ash;
|
||||
pub mod sync;
|
||||
pub mod timeline_semaphore;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue