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 dmabuf_buffer;
|
||||||
mod eotfs;
|
mod eotfs;
|
||||||
mod format;
|
mod format;
|
||||||
mod gpu_alloc_ash;
|
|
||||||
mod image;
|
mod image;
|
||||||
mod instance;
|
mod instance;
|
||||||
mod pipeline;
|
mod pipeline;
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,9 @@
|
||||||
use {
|
use {
|
||||||
crate::{
|
crate::{
|
||||||
cpu_worker::{AsyncCpuWork, CpuJob, CpuWork, CpuWorker},
|
cpu_worker::{AsyncCpuWork, CpuJob, CpuWork, CpuWorker},
|
||||||
gfx_apis::vulkan::{
|
gfx_apis::vulkan::{VulkanError, device::VulkanDevice, renderer::VulkanRenderer},
|
||||||
VulkanError,
|
|
||||||
device::VulkanDevice,
|
|
||||||
gpu_alloc_ash::{self, AshMemoryDevice},
|
|
||||||
renderer::VulkanRenderer,
|
|
||||||
},
|
|
||||||
utils::{numcell::NumCell, page_size::page_size, ptr_ext::MutPtrExt},
|
utils::{numcell::NumCell, page_size::page_size, ptr_ext::MutPtrExt},
|
||||||
|
vulkan_core::gpu_alloc_ash::{self, AshMemoryDevice},
|
||||||
},
|
},
|
||||||
ash::{
|
ash::{
|
||||||
Device,
|
Device,
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,7 @@ use {
|
||||||
|
|
||||||
pub mod device;
|
pub mod device;
|
||||||
pub mod fence;
|
pub mod fence;
|
||||||
|
pub mod gpu_alloc_ash;
|
||||||
pub mod sync;
|
pub mod sync;
|
||||||
pub mod timeline_semaphore;
|
pub mod timeline_semaphore;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue