1
0
Fork 0
forked from wry/wry

vulkan: move gpu-alloc-ash to core

This commit is contained in:
Julian Orth 2026-02-18 21:14:12 +01:00
parent fce250d233
commit 4b3d3a50cd
4 changed files with 3 additions and 7 deletions

View file

@ -10,7 +10,6 @@ mod device;
mod dmabuf_buffer;
mod eotfs;
mod format;
mod gpu_alloc_ash;
mod image;
mod instance;
mod pipeline;

View file

@ -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,

View file

@ -32,6 +32,7 @@ use {
pub mod device;
pub mod fence;
pub mod gpu_alloc_ash;
pub mod sync;
pub mod timeline_semaphore;